#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
1
Explanation:
plz mark me as branliest please
Similar questions