Q:

Assume the output of below code:

0

Assume the output of below code:

"#include <stdio.h>
    void f(int a[2][])
    {
        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);
    }"

  1. compile time error
  2. All junk values
  3. 0 Only
  4. Runtime error

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

compile time error

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Let x be an array. Which of the following are ille... >>
<< What are the Types of Arrays?...