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

Posted on by