1.

What will be the output of the following C code?
#include <stdio.h>
register int p;
void main()
{
printf("%d", p);
}

A. 0
B. Garbage value
C. Compilation error
D. Varies
E. None of these
Answer» D. Varies


Discussion

No Comment Found

Related MCQs