Q. What is the output of C Program with arrays.?
Code:
int main()
{
int rollno[3]=[1001,1002,1003];
printf("%d", rollno[1]);
}
β
Correct Answer: (D)
Compiler error