Open In App

GATE | GATE CS Mock 2018 | Question 39

Consider the following C-program :




int fun()
{
  static int num = 16;
  return num--;
}
 
int main()
{
  for(fun(); fun(); fun())
    printf(\"%d \", fun());
  return 0;
}

What is output of above program?
(A)



Infinite loop
 

(B)



13 10 7 4 1
 

(C)

15 12 8 5 2
 

(D)

14 11 8 5 2
 

Answer: (D)
Explanation:

Option (D) is correct. Refer : https://www.geeksforgeeks.org/c-storage-classes-and-type-qualifiers-question-9/amp/
 

Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :