Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void f(int a[][3])
{
    a[0][1] = 3;
    int i = 0, j = 0;
    for (i = 0; i < 2; i++)
    for (j = 0; j < 3; j++)
    printf("%d", a[i][j]);
}
void main()
{
    int a[2][3] = {0};
    f(a);
}

A. 0 3 0 0 0 0

B. Junk 3 junk junk junk junk

C. Compile time error

D. All junk values

Answer: Option A


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer