72.
Can we use a function as a parameter of another function? [Eg: void wow(int func())].

75.
The #else directive is used for . . . . . . . .

76.
What will be the output of the following C code?
#include <stdio.h>
void foo(auto int i);
int main()
{
    foo(10);
}
void foo(auto int i)
{
    printf("%d\n", i );
}

77.
Conditional inclusion can be used for . . . . . . . .

79.
Comment on the output of the following C code.
#include <stdio.h>
#define var 20);
int main()
{
    printf("%d\n", var
}

Read More Section(Function)

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