1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
char *num;
scanf("%s", num);
return 0;
}

A. Undefined behaviour
B. Nothing
C. Compilation Error
D. Runtime Error
E. None of these
Answer» C. Compilation Error


Discussion

No Comment Found

Related MCQs