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
What is the difference between variable declaration and variable definition in c?
How does struct work in c?
If errno contains a nonzero number, is there an error?
What is #line?
What language is c written?
Does c have an equivalent to pascals with statement?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is the purpose of the preprocessor directive error?
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
Explain can static variables be declared in a header file?
Where register variables are stored in c?
Can two or more operators such as and be combined in a single line of program code?
Explain why can’t constant values be used to define an array’s initial size?
What is graph in c?
How pointer is different from array?