Answer to Question #54847 in C for rajashree g.s
2015-09-20T10:46:54-04:00
#include<stdio.h>
main()
{
int x=4,y=0,z;
while(x>=0)
{
x--;
y++;
if(x==y)
continue;
else
printf("\n %d %d",x,y);
}
What is the output of this program? Please explain the logic for the output.
1
2015-09-22T00:00:42-0400
The answer to the question is available in the PDF file https://assignmentexpert.com/https://assignmentexpert.com/homework-answers/programming-answer-54847.pdf
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS !
Learn more about our help with Assignments:
C
Comments
Leave a comment