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
how many key words availabel in c a) 28 b) 31 c) 32
Explain what are global variables and explain how do you declare them?
Multiply an Integer Number by 2 Without Using Multiplication Operator
write a program to display all prime numbers
What is exit() function?
What are the 5 organizational structures?
Explain how can type-insensitive macros be created?
What functions are used for dynamic memory allocation in c language?
How does normalization of huge pointer works?
Why c language is called c?
How can you invoke another program from within a C program?
What is the basic structure of c?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What are preprocessor directives in c?