Home » C Programming » Pointers » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void count(int m, int n)
    {
    printf("%d\n", m);
    }
    void main()
    {
    int i = 12, j = 11;
    count(i, j);
    printf("%d %d\n", i, j);
    }
    1. 12
      12 11
    2. 11
      12 11
    3. 11
      11 12
    4. Compilation Error
    5. None of these
Correct Option: A

12
12 11



Your comments will be displayed only after manual approval.