100% SET-4 5b: continue statement illustration.
#include<stdio.h>
void main()
{
int i=9;
while(i)
{
i--;
if(i==7)
{
continue;
}
printf("%2d",i);
}
}
void main()
{
int i=9;
while(i)
{
i--;
if(i==7)
{
continue;
}
printf("%2d",i);
}
}
తెరమీద
8 6 5 4 3 2 1 0
గమనిక
7 అనే అంకె ప్రింట్ కాలేదు..bcoz of continue statement.
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.