Forum: C Apr 10th, 2007 |
| Replies: 4 Views: 2,071 |
Forum: C Apr 10th, 2007 |
| Replies: 4 Views: 2,071 the file is tab separated like you said, but the problem is I get the error:
"error C2679: binary '>>' : no operator found which takes a right-hand operand of type 'StudentType'"
at compile... |
Forum: C Apr 10th, 2007 |
| Replies: 4 Views: 2,071 I have a csv file that I need to be able to read it into a struct array. I have read examples and they all match what I have.
void ReadStudents ()
{
fstream infile;
int i;
infile.open... |
Forum: C Mar 24th, 2007 |
| Replies: 2 Views: 867 |
Forum: C Mar 24th, 2007 |
| Replies: 2 Views: 867 I have a function that returns an int. How can I call it from the main function. |
Forum: C Mar 22nd, 2007 |
| Replies: 2 Views: 2,163 |
Forum: C Mar 21st, 2007 |
| Replies: 2 Views: 2,163 i have a string array and I need to change it to uppercase. what function can I use?? |
Forum: C Mar 17th, 2007 |
| Replies: 2 Views: 749 Cool thanks. I will give it a try and let you know what happens. |
Forum: C Mar 17th, 2007 |
| Replies: 2 Views: 749 I have to write a program sort of like a hangman game. It will ask the user for a word and them prompts the user for a letter. I will tell the user how many time the letter is in the word and... |