Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

GATE | GATE CS Mock 2018 | Question 39

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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/
 


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

My Personal Notes arrow_drop_up
Last Updated : 10 Jan, 2018
Like Article
Save Article
Similar Reads