define N 10; being wrongly initialised, I think all of the above should be the correct answer, as it makes N 10, resulting in the error in other statements as well.
Consider the following code which contains a common error
define N 10;
void function(void)
A) char array N ;
B) int x 2 N;
C) for(int i 0 ; i N i)
printf(" c n", array i );
Which of the following lines contains a syntax error?
A. Line A.
B. Line...
The question is about the syntax error but initialising N has a syntax error itself.
i.e. define N 10;
Does option B, int x 2 N; , count as a syntax error?