Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Operators | Question 13

Improve Article
Save Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article




#include<stdio.h> 
int main(void
  int a = 1; 
  int b = 0; 
  b = a++ + a++; 
  printf("%d %d",a,b); 
  return 0; 
}


(A) 3 6
(B) Compiler Dependent
(C) 3 4
(D) 3 3


Answer: (B)

Explanation: See https://www.geeksforgeeks.org/sequence-points-in-c-set-1/ for explanation.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!