#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 / vijay pal
2
5
| Is This Answer Correct ? | 18 Yes | 0 No |
Post New Answer View All Answers
Describe how arrays can be passed to a user defined function
What is the difference between the expression “++a” and “a++”?
What is || operator and how does it function in a program?
What is %d used for?
Function calling procedures? and their differences? Why should one go for Call by Reference?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Is stack a keyword in c?
Differentiate between #include<...> and #include '...'
What is the importance of c in your views?
How do you determine whether to use a stream function or a low-level function?
What is a structural principle?
What is the modulus operator?
What is the use of parallelize in spark?
What is define directive?
What is the use of bitwise operator?