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 ?
continueis placed wrong, but what do you want to achieve?? – bash.d Feb 26 at 12:52switchisn't a loop, and thecontinueis outside the}that ends thewhileloop. – Wooble Feb 26 at 12:54