#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
Hi can anyone tell what is a start up code?
Why is c used in embedded systems?
Where are the auto variables stored?
What does %d do?
Difference between pass by reference and pass by value?
Differentiate between a structure and a union.
How is a pointer variable declared?
Are pointers integers in c?
What is pivot in c?
What is difference between %d and %i in c?
What is use of bit field?
What does static variable mean in c?
What do you mean by c what are the main characteristics of c language?
Is array a primitive data type in c?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.