13.
Comment on the output of the following C code.
#include <stdio.h>
int main()
{
    int i;
    for (i = 0;i < 5; i++)
    int a = i;
    printf("%d", a);
}

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

16.
What will be the output of the following C code?
#include <stdio.h>
#define MIN 0
#if defined(MIN) - (!defined(MAX))
#define MAX 10
#endif
int main()
{
    printf("%d %d\n", MAX, MIN);
    return 0;
}

19.
Which of the following operation is not possible in a register variable?

Read More Section(Function)

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