32.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int x = 2, y = 2;
    float f = y + x /= x / y;
    printf("%d %f\n", x, f);
    return 0;
}

39.
Which of the following option is the correct representation of the following C statement?
e = a * b + c / d * f;

40.
Point out the error( if any) in the following code.
#include<stdio.h>
enum India
{
    a,b,c
};
enum India g;
main()
{
    g++;
    printf("%d",g);
}

Read More Section(C Fundamentals)

Each Section contains maximum 100 MCQs question on C Fundamentals. To get more questions visit other sections.