gcc 4.4.4 c89
I have the following file that contains name, age, and gender. I am trying to read in the age.
"Bloggs, Joe" 34 M
I can open the file successfully:
fp = fopen("input.txt", "r");
if(fp == NULL) {
fprintf(stderr, "Failed to open file [ %s ]\n", strerror(errno));
return 1;
}
And I try and read in the age ( 34 ).
int age = 0;
int result = 0;
result = fscanf(fp, "%d", &age);
However, when I try and print the outcome, I always get a zero for age and result.
Many thanks for any suggestions,