#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
How can a string be converted to a number?
What is 2c dna?
Explain #pragma statements.
Can we use any name in place of argv and argc as command line arguments?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is a void pointer? When is a void pointer used?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What are the disadvantages of a shell structure?
What is n in c?
What is meant by inheritance?
Why do we need a structure?
define string ?
Why does the call char scanf work?
Explain what are global variables and explain how do you declare them?
What is structure and union in c?