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
Why do we use pointer to pointer in c?
When is a void pointer used?
What are the advantages and disadvantages of a heap?
How do you write a program which produces its own source code as output?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
How do I round numbers?
How pointers are declared?
What is the general form of a C program?
Is array name a pointer?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is c mainly used for?
When should the volatile modifier be used?