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

100.
Can variable i be accessed by functions in another source file?
#include <stdio.h>
int i;
int main()
{
    printf("%d\n", i);
}

Read More Section(Function)

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