1.

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

A. 10 5
B. 5 10
C. 6 5
D. 5 6
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs