I am trying to learn C and finding myself getting stuck a lot, no complains :)
Anyway, I wrote a program and GCC does not like it. The following code is NOT the program, but demonstrate the problem:
#define MAXLINE = 1000
int main()
{
int tmp = MAXLINE;
char line[MAXLINE];
return 0;
}
When it is compiled, I get the following error:
test.c:7: error: expected expression before ‘=’ token
If I replace symbolic constant MAXLINE with int 1000, everything works.
What is going on?