Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
main()
{
    int i=0;
    switch(i)
    {
        while(1)
        {
        case 0:
            i=1;
            printf("1");
            break;
        }continue;
    default:
        printf("0");break;
    }
}

Please clarify me why the error is coming as continue statement not within a loop.

share|improve this question
2  
Your continue is placed wrong, but what do you want to achieve?? – bash.d Feb 26 at 12:52
I indeneted the code normally..the above is just a typing error and it showed this way whithout indents.. – user195661 Feb 26 at 12:53
No, that is NO normal indentation... – bash.d Feb 26 at 12:53
switch isn't a loop, and the continue is outside the } that ends the while loop. – Wooble Feb 26 at 12:54

closed as not a real question by Wooble, Hasturkun, Sumit Singh, X.L.Ant, Lundin Feb 26 at 13:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

A continue statement has the effect of proceeding to the next loop iteration. That means that all the statements that could have been made after continue in the loop are skipped. It affects the highest nested loop, for example :

int i = 0, j = 0;
while (i < 2) {
    i++;
    while (j < 5) {
        j++;
        if (j > 3)
            continue;
        /*
         * If j > 3 the following printf is skipped.
         */
        printf("i = %d, j = %d\n");
    }
}

Will output :

i = 1, j = 1
i = 1, j = 2
i = 1, j = 3
i = 2, j = 1
i = 2, j = 2
i = 2, j = 3

That said, a continue statement made outside a loop is totally meaningless, hence your error (because it is outside the scope of your while).

As implied in the comments, what are you trying to achieve ?

share|improve this answer

continue should be in a loop. Here, it is outside while block.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.