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
Is null a keyword in c?
What is double pointer in c?
What are pointers? Why are they used?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
how to create duplicate link list using C???
Why do we need functions in c?
cavium networks written test pattern ..
What is integer constants?
What is meant by recursion?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is the difference between array_name and &array_name?
what are enumerations in C
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is a memory leak? How to avoid it?