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
int x=sizeof(!5.856); What will value of variable x?
What is the difference between union and structure in c?
Can we declare variable anywhere in c?
what is ram?
what is ANSI and ISO
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
How is pointer initialized in c?
What's the difference between calloc() and malloc()?
What are local static variables?
Is main is user defined function?