#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 / jitendra mahajan
2
5
| Is This Answer Correct ? | 75 Yes | 6 No |
Post New Answer View All Answers
how to find anagram without using string functions using only loops in c programming
What is the difference between procedural and functional programming?
Do you know what are the properties of union in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
How does placing some code lines between the comment symbol help in debugging the code?
what does static variable mean?
What is restrict keyword in c?
Explain bitwise shift operators?
What happens if header file is included twice?
Why static variable is used in c?
What is variable and explain rules to declare variable in c?
What is the difference between array and structure in c?