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...

what will be the output of this program
main()
{
int i=1;
while (i<=10);
{
i++;
}
}

Answer Posted / srikanth karnati

there is no output because there is no out statment
there.if write printf("%d",i);at out side the loop the
output will be 11.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you subtract pointers from each other? Why would you?

1008


What is the 'named constructor idiom'?

1148


What is the difference between union and structure in c?

1279


Why pointers are used?

1116


what is the difference between class and unio?

2418


How do I copy files?

1108


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

2147


Is null always defined as 0(zero)?

1177


What is a function simple definition?

1167


What are the disadvantages of external storage class?

1105


What does emoji p mean?

1205


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

1148


Write a program to swap two numbers without using third variable in c?

1181


what are the 10 different models of writing an addition program in C language?

1943


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2824