1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int k = 20, L = 25;
int *num[] = {&k, &L};
printf("%d ", (*num)[1]);
return 0;
}

A. Compilation Error
B. 25
C. 20
D. Garbage value
E. None of these
Answer» E. None of these


Discussion

No Comment Found