Home » C Programming » C-Library-Functions » Question
  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);
    }
    1. 4
    2. 2
    3. 16
    4. Garbage value
    5. None of these
Correct Option: C

16



Your comments will be displayed only after manual approval.