1.

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

A. Garbage value
B. Compilation Error
C. Nothing
D. 0
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs