void main()
{
int a=1;
while(a++<=1)
while(a++<=2);
}
Answer Posted / dheerendra
it gives error,
because any loop can't be terminated by ';'
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is a constant and types of constants in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What are the types of i/o functions?
Write a program to implement queue.
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What are the Advantages of using macro
How was c created?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Can a variable be both const and volatile?
What is volatile, register definition in C
What is a pointer on a pointer in c programming language?
Why void main is used in c?
What is the size of enum in c?
show how link list can be used to repersent the following polynomial i) 5x+2