void main()
{
int a=1;
while(a++<=1)
while(a++<=2);
}
Answer Posted / sabir
this program execute at one both while are working becouse
a++ increase value after while statement that by both are
execute at once
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
Why doesn't C support function overloading?
using only #include
How can you invoke another program from within a C program?
What is pre-emptive data structure and explain it with example?
What is a newline escape sequence?
What is the collection of communication lines and routers called?
Differentiate between ordinary variable and pointer in c.
Are there namespaces in c?
What are the advantages of c preprocessor?
Explain what is a static function?
What are the 4 types of organizational structures?
What are the types of macro formats?
What is data structure in c and its types?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?