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


Please Help Members By Posting Answers For Below Questions

Is c high or low level?

775


How do we make a global variable accessible across files? Explain the extern keyword?

1616


What are dangling pointers? How are dangling pointers different from memory leaks?

907


What is the Purpose of 'extern' keyword in a function declaration?

846


Tell me can the size of an array be declared at runtime?

795


What is the -> in c?

778


When can a far pointer be used?

759


What is far pointer in c?

999


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1679


Explain what are the advantages and disadvantages of a heap?

841


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

958


What is atoi and atof in c?

803


What is wrong with this initialization?

764


What is the difference between functions getch() and getche()?

823


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

987