#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 / fa
1
1
1
1
1
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is pragma in c?
What's the total generic pointer type?
what are # pragma staments?
What is struct node in c?
Is it possible to execute code even after the program exits the main() function?
what will be maximum number of comparisons when number of elements are given?
How can I prevent another program from modifying part of a file that I am modifying?
What is the difference between variable declaration and variable definition in c?
How can I call fortran?
What is the default value of local and global variables in c?
What is assignment operator?
Explain what is a pragma?
What is the difference between struct and typedef struct in c?
What is the meaning of c in c language?
What is the use of extern in c?