Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    foo();
    foo();
}
void foo()
{
    int i = 11;
    printf("%d ", i);
    static int j = 12;
    j = j + 1;
    printf("%d\n", j);
}

A. 11 12 11 12

B. 11 13 11 14

C. 11 12 11 13

D. Compile time error

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function