Computer Science, asked by sram07366, 3 months ago

7
6
#include <stdio.h>
main()
{ int x,y;
y=2;
x=y+1;
printf("%d %d\n" x, y);
y=y+2;
X= 5;
printf("%d %d\n",x,y)
}​

Answers

Answered by yesiamin6
0

Output is 3,2 and 5,4

Explanation:

HOPE IT HELPS YOU

DO FOLLOW FOR MORE ANSWERS

MARK AS BRAINLIEST

Answered by anindyaadhikari13
1

Answer:-

At first,

y=2

z

x=y+1=3

Now, x and y is printed

output:- 3 2

Again,

y=y+2=2+2=4

x=5

Now, x and y gets printed

output:- 5 4

Output:-

3 2

5 4

Similar questions