1.

What will be the output of the following C code?
#include <stdio.h>
typedef int integer;
int main()
{
int n1 = 120, *p;
float n2 = 250;
integer k = n1;
p = &k;
printf("%d n", *p);
return 0;
}

A. 250
B. Compilation Error
C. Garbage value
D. 120
E. None of these
Answer» E. None of these


Discussion

No Comment Found