A

Admin • 833K Points
Coach

Q. Output is

Code:
#include <stdio.h>

void main() {
int x = 4;
int y = 5;
x = ++x + y–;
printf(“%d “, x);
printf(“%d”, y);
}
  • (A) 9 5
  • (B) 10 5
  • (C) 9 4
  • (D) 10 4
  • Correct Answer - Option(D)
  • Views: 23
  • Filed under category C Programming
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.