#include<stdio.h>
main()
{int i=1;j=1;
for(;;)
{if(i>5)
break;
else
j+=1;
printf("\n%d",j)
i+=j;
}
}
Answer Posted / ajay
error loop is incomplete
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What are local static variables? How can you use them?
shorting algorithmS
What is array of pointers to string?
Differentiate Source Codes from Object Codes
What is string concatenation in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What does node * mean?
What is the difference between printf and scanf in c?
How do you construct an increment statement or decrement statement in C?
What is difference between class and structure?
What are the parts of c program?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is pointers in c?
Is javascript written in c?