main()
{
intj;
while9j<=10)
{
printf("\n%d",j);
j=j+1;
}
}
Answer Posted / soni
compile error
Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
Is c high or low level?
How do we make a global variable accessible across files? Explain the extern keyword?
What are dangling pointers? How are dangling pointers different from memory leaks?
What is the Purpose of 'extern' keyword in a function declaration?
Tell me can the size of an array be declared at runtime?
What is the -> in c?
When can a far pointer be used?
What is far pointer in c?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Explain what are the advantages and disadvantages of a heap?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is atoi and atof in c?
What is wrong with this initialization?
What is the difference between functions getch() and getche()?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory