1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int var = 10;
int *p = &15;
printf("%p n", p);
}

A. 10
B. 15
C. Garbage value
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found