#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 / fa
1
1
1
1
1
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
How do you declare a variable that will hold string values?
What is the difference between class and object in c?
What is the difference between c &c++?
Can I initialize unions?
where are auto variables stored? What are the characteristics of an auto variable?
Why is sprintf unsafe?
what are the facialities provided by you after the selection of the student.
develop algorithms to add polynomials (i) in one variable
Explain what is meant by high-order and low-order bytes?
How can I determine whether a machines byte order is big-endian or little-endian?
What is the difference between procedural and functional programming?
What is preprocessor with example?
Here is a good puzzle: how do you write a program which produces its own source code as output?
explain what are actual arguments?
Does c have class?