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

Related Articles

C | Operators | Question 9

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

Output of following program?




#include <stdio.h>
int f1() { printf ("Geeks"); return 1;}
int f2() { printf ("Quiz"); return 1;}
  
int main()
{
  int p = f1() + f2();
  return 0;
}


(A) GeeksQuiz
(B) QuizGeeks
(C) Compiler Dependent
(D) Compiler Error


Answer: (C)

Explanation: The operator ‘+’ doesn’t have a standard defined order of evaluation for its operands. Either f1() or f2() may be executed first. So a compiler may choose to output either “GeeksQuiz” or “QuizGeeks”.

My Personal Notes arrow_drop_up
Last Updated : 04 Feb, 2013
Like Article
Save Article
Similar Reads