Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#include<stdio.h>
int fun();
int i;
int main()
{
while(i)
{
fun();
main();
}
printf("hello \n");
return 0;
}
int fun()
{
printf("hi");
}
answer is hello.how??wat is tat while(i) mean?

Answer Posted / agita

in response to the previous answer...

there is no storage class specification for i..so by default
it
is auto..if an auto variable is not initiallized it would
give a garbage value..then how come while(0)....?

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to reverse a given number in c?

981


What is difference between array and structure in c?

1092


What does return 1 means in c?

1007


What is %g in c?

1020


Why C language is a procedural language?

976


What is the difference between functions abs() and fabs()?

1085


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

1119


What are the 3 types of structures?

980


Is c procedural or functional?

979


what are bit fields? What is the use of bit fields in a structure declaration?

2045


What is the use of printf() and scanf() functions?

1069


Define circular linked list.

976


write a program to create a sparse matrix using dynamic memory allocation.

4838


explain what is fifo?

1027


Explain what is meant by high-order and low-order bytes?

999