main() { int a=10; printf("%d", a++); printf("%d",a); } What is the output?
9,11
11,10
10,11
11,9
Answers
Answered by
0
Answer:
Option number 3 is the correct answer
Similar questions