main()
{
intj;
while9j<=10)
{
printf("\n%d",j);
j=j+1;
}
}
Answer Posted / niranjan kumar niraj
output=9
| Is This Answer Correct ? | 0 Yes | 9 No |
Post New Answer View All Answers
Can we use visual studio for c?
What is dynamic memory allocation?
Explain what is the heap?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are the types of functions in c?
What is the value of h?
Why we use stdio h in c?
What are the types of pointers in c?
What is the difference between volatile and const volatile?
What is the meaning of && in c?
Explain continue keyword in c
Is null always defined as 0(zero)?
When should we use pointers in a c program?
What is indirection in c?