#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
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is a const pointer in c?
What is the use of getchar() function?
Explain how can I make sure that my program is the only one accessing a file?
What is meant by high-order and low-order bytes?
What is hashing in c language?
How can a process change an environment variable in its caller?
Which is better malloc or calloc?
What are pointers?
What is a pointer on a pointer in c programming language?
using only #include
Is null always equal to 0(zero)?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is file in c language?
What is the usage of the pointer in c?