Forum: C Dec 7th, 2007 |
| Replies: 5 Views: 915 well i found the problems at line 61 and 67, but now im getting errors at line 52 and 63 |
Forum: C Dec 7th, 2007 |
| Replies: 5 Views: 915 Ive been working on this program for a little while now. and
i keep getting the error messages:
proj6b.c:61: error: syntax error before '{' token
proj6b.c:68: error: syntax error before '{' token... |
Forum: C Dec 3rd, 2007 |
| Replies: 1 Views: 1,445 This code is suppose to read from an inputed file and then fill and array and sort the student records with in that file. Im having alot of trouble debugging myself and this program is due with in... |
Forum: C Dec 3rd, 2007 |
| Replies: 2 Views: 669 thanks haha.
i was just reading the section in my book and its told me exactly what you said.
that the structure have to be initialized in a certain order |
Forum: C Dec 3rd, 2007 |
| Replies: 2 Views: 669 Hello,
well this portion of code is basically just the structures from the program. everytime i compile the program i get an error at the INFOstructure.
i am using these structure in a program... |
Forum: C Nov 27th, 2007 |
| Replies: 3 Views: 2,380 sorry about that and thank you for formatting my code. I will make sure to do that from now on and i took your advice and read the post mentioned above.
Well, my problem is that the code above... |
Forum: C Nov 27th, 2007 |
| Replies: 3 Views: 2,380 #include <stdio.h>
#include <stdlib.h>
#define SIZE 5
#define MAX 10
void fillArray(char arr[][MAX]);
void printArray(char arr[][MAX]);
int fileOpen(void); |