#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
What is logical error?
explain what is fifo?
Explain what is the general form of a c program?
What is the scope of an external variable in c?
Here is a neat trick for checking whether two strings are equal
What is %s and %d in c?
What are qualifiers and modifiers c?
Difference between Function to pointer and pointer to function
Explain how can you check to see whether a symbol is defined?
What is nested structure with example?
Can a variable be both constant and volatile?
What is function prototype in c language?
What is the use of getch ()?
What are void pointers in c?
what are bit fields in c?