1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int num[3][4][5], k = 12;
num[0][0] = &k;
printf("%d n", *num[0][0]);
}

A. Address of k
B. Compilation Error
C. Undefined behaviour
D. 12
E. None of these
Answer» C. Undefined behaviour


Discussion

No Comment Found