1.

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

A. 4
B. 2
C. 16
D. Garbage value
E. None of these
Answer» D. Garbage value


Discussion

No Comment Found

Related MCQs