Examveda

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

A. 9

B. 8

C. -1

D. 6

Answer: Option B


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output