void main(){
int a;
a=1;
while(a-->=1)
while(a-->=0);
printf("%d",a);
}
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between exit() and _exit()?
How can I handle floating-point exceptions gracefully?
Why is a semicolon (;) put at the end of every program statement?
Define recursion in c.
Why is C called a middle-level language?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
What is the condition that is applied with ?: Operator?
Why is c so powerful?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
Where are the auto variables stored?
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
What is the difference between a string and an array?