#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 hashing in c language?
Are pointers integer?
What is the total generic pointer type?
Can we increase size of array in c?
What is the role of this pointer?
If null and 0 are equivalent as null pointer constants, which should I use?
How to write a multi-statement macro?
what will be maximum number of comparisons when number of elements are given?
Where in memory are my variables stored?
What are the features of c language?
What is main () in c language?
How can I remove the trailing spaces from a string?
Where are local variables stored in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Explain what are binary trees?