#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
Why isn't it being handled properly?
What is the stack in c?
What is the use of sizeof () in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why is c called "mother" language?
Can we compile a program without main() function?
What is the difference between typedef and #define?
What does *p++ do?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Write a c program to demonstrate character and string constants?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is %s and %d in c?
What is the value of uninitialized variable in c?
What is int main () in c?