Examveda

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

A. Varies

B. 0

C. Junk value

D. Compile time error

Answer: Option D


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function