Open In App

C | Operators | Question 9

Like Article
Like
Save
Share
Report

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”.


Last Updated : 04 Feb, 2013
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads