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

Answers were Sorted based on User's Feedback



What is that continue statement??..

Answer / satya

continue is a keyword..
whenever this statement encountered in a loop , the control
will immediately send to the starting of the loop , without
continuing the sequence of statements...

starting of the loop means
1)control goes to incremental operator if it is for loop
2)control will go to condition checking statement in while
loop...

Is This Answer Correct ?    2 Yes 0 No

What is that continue statement??..

Answer / amol p.deokar

When Continue is encountered inside any loop,control automatically passes to the beginning of the loop.

A cont.. is usually associated with an if

Is This Answer Correct ?    0 Yes 0 No

What is that continue statement??..

Answer / 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

What is that continue statement??..

Answer / palani222samy

continue:

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is the heap in c?

0 Answers  


What are reserved words with a programming language?

0 Answers  


main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?

3 Answers   Excel,


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers  


f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


What are the 3 types of structures?

0 Answers  


What is const volatile variable in c?

0 Answers  


is it possible to create your own header files?

0 Answers  


define function

4 Answers   Assurgent, Sonata,


Is calloc better than malloc?

0 Answers  


WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?

1 Answers  


Is main a keyword in c?

0 Answers  


Categories