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 is that continue statement??

Answer Posted / sri

continue is a keyword,and when contine appears in a
loop ,the particular iteration is skiped for example
#include<stdio.h>
void main()
{
int i=0;
while(i<=5)
{
if(i==3)
continue;
printf("\t%d",i);
i++;
}
}
output:0 1 2 4 5.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between variable declaration and variable definition in c?

1100


How does struct work in c?

1133


If errno contains a nonzero number, is there an error?

1428


What is #line?

1108


What language is c written?

1098


Does c have an equivalent to pascals with statement?

1059


Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

1067


What is the purpose of the preprocessor directive error?

1314


write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

2005


Explain can static variables be declared in a header file?

1196


Where register variables are stored in c?

996


Can two or more operators such as and be combined in a single line of program code?

1413


Explain why can’t constant values be used to define an array’s initial size?

1398


What is graph in c?

1100


How pointer is different from array?

1143