1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int Array[2][5];
Array[][] = {{10, 20, 30, 40, 50}, {40, 50, 60, 70, 80}};
printf("%d n", Array[3][4]);
}

A. Garbage value
B. Compilation Error
C. 30 70
D. Undefined behaviour
E. None of these
Answer» C. 30 70


Discussion

No Comment Found