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