#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 / radha raman
2
3
| Is This Answer Correct ? | 13 Yes | 8 No |
Post New Answer View All Answers
Who is the main contributor in designing the c language after dennis ritchie?
Do you have any idea how to compare array with pointer in c?
How many types of functions are there in c?
what is the diffrenet bettwen HTTP and internet protocol
Differentiate fundamental data types and derived data types in C.
How can I swap two values without using a temporary?
What is openmp in c?
If you know then define #pragma?
When should the const modifier be used?
Tell me what are bitwise shift operators?
Explain how does free() know explain how much memory to release?
What are the 4 types of unions?
What is indirection? How many levels of pointers can you have?
Is fortran faster than c?
What is use of null pointer in c?