71.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    auto i = 10;
    const auto int *p = &i;
    printf("%d\n", i);
}

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

77.
If #include is used with file name in angular brackets.

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

Read More Section(Function)

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