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
Find MAXIMUM of three distinct integers using a single C statement
What is property type c?
i got 75% in all semester am i eligible for your company
What are the back slash character constants or escape sequence charactersavailable in c?
Can include files be nested?
Write a program to print ASCII code for a given digit.
How can I invoke another program or command and trap its output?
What is nested structure with example?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Function calling procedures? and their differences? Why should one go for Call by Reference?
How can I write a function analogous to scanf?
Where is volatile variable stored?
hi, which software companys will take,if d candidate's % is jst 55%?
Can you please explain the difference between exit() and _exit() function?
Explain what does the function toupper() do?