1.

Comment on the output of the following C code.
#include <stdio.h>
int main()
{
int k, num, x = 6;
scanf("%d", &num);
for (k = 0; k < num; k++)
num = num * 3;
}

A. Bitwise exclusive OR
B. Arithmetic Shift right
C. Logical Shift left
D. No output
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs