1.

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

A. 28
B. 7
C. 2
D. Compilation Error
E. None of these
Answer» B. 7


Discussion

No Comment Found

Related MCQs