Q. What is the output of C program with arrays?
Code:
int main()
{
int ary(3)=[20,30,40];
printf("%d", a(1));
}
β
Correct Answer: (D)
Compiler error
int main()
{
int ary(3)=[20,30,40];
printf("%d", a(1));
}
You must be Logged in to update hint/solution