61.
Which of following is not accepted in C?

64.
What is the scope of an automatic variable?

65.
What will be the output of the following C code having void return-type function?
#include <stdio.h>
void foo()
{
    return 1;
}
void main()
{
    int x = 0;
    x = foo();
    printf("%d", x);
}

66.
If the file name is enclosed in double quotation marks, then . . . . . . . .

67.
What will be the output of the following C code?
#include <stdio.h>
void foo();
int main()
{
    void foo();
    foo();
    return 0;
}
void foo()
{
    printf("2 ");
}

70.
What will be the output of the following C code?
#include <stdio.h>
#define SYSTEM 20
int main()
{
    int a = 20;
    #if SYSTEM == a
    printf("HELLO ");
    #endif
    #if SYSTEM == 20
    printf("WORLD\n");
    #endif
}

Read More Section(Function)

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