You can find the results of your search below. If you didn't find what you were looking for, you can create or edit the page named after your query with the appropriate tool.
ki library source code example reference}}
====== continue ======
continue;
===== C Sourcecode Exampl... ) {
int i;
for (i=0;i<=80;i++) {
if (i==42) continue;
printf("The answer is probably not %i\n",i);... o the output: the number 42 will not printet\\
** continue skips the rest of the loop**
ouput:
user@host:~$ ./continue
The answer is probably not 0
The answer is probably not 1
The answer
ki library source code example reference}}
====== continue ======
continue;
===== cpp Sourcecode Exam... ) {
int i;
for (i=0;i<=80;i++) {
if (i==42) continue;
cout << "The answer is probably not " << i <... to the output: the number 42 will not print\\
** continue skips the rest of the loop**
ouput:
The a
====== continue ======
The ''continue'' keyword causes the rest of the current loop iteration to be skipped, and the next one to be evaluated and run like normal.
since C 89
=== Syntax ===
''//continue//;''
-> control structures [[c:control_structures:continue|]]
====== continue ======
The continue statement skips the rest of the current iteration of a loop (**do**, ... & x < 120){ // create jump in values
continue;
}
digitalWrite(PWMpin, x);
delay(50
printf("Wait or better sleep for 42 seconds to continue.\n");
sleep(42);
printf("Programm execution... e ====
Wait or better sleep for 42 seconds to continue
.... 42 seconds later
Programm execution