73.
Which of the following declaration is illegal?

78.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int p = 10, q = 20, r;
    if (r = p = 5 || q > 20)
        printf("%d", r);
    else
        printf("No Output\n");
}

79.
Which of the following statement is false?

Read More Section(C Fundamentals)

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