Computer Science, asked by rajlaxmibhujbal99, 5 months ago

#include
main( )
{
int x=4,y=3,z;
while(x>=0)
{
if(x==y)
break;
else
printf(“%d %d \n”, x, y);
x--;
y++;
}
}
write the output step wise

Answers

Answered by yuvraj1774
1

Explanation:

plz mark me as branliest please

Similar questions