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 c++ used for today?
What is the function of volatile in c language?
What is extern keyword in c?
What are valid operations on pointers?
How macro execution is faster than function ?
what is the significance of static storage class specifier?
What happens if you free a pointer twice?
What is use of null pointer in c?
What is New modifiers?
How can I use a preprocessorif expression to ?
What is the difference between āgā and āgā in C?
What is the scope of an external variable in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What does calloc stand for?
What is the difference between %d and %i?