User Tools

Site Tools


c:control_structures:continue

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:control_structures:continue [2024/02/16 01:04] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +====== continue ======
 +
 +
 +    continue;
 +
 +===== C Sourcecode Example =====    
 +<code c>
 +#include <stdio.h> /* including standard library */
 +//#include <windows.h> /* uncomment this for Windows */
 +
 +
 +int main( void ) {
 +int i;
 +
 +for (i=0;i<=80;i++) {
 +    if (i==42) continue;
 +    printf("The answer is probably not %i\n",i);
 +}
 +
 +return 0;
 +}
 +</code>
 +===== output =====
 +comment to 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 is probably not 2
 +    The answer is probably not 3
 +    The answer is probably not ...
 +    The answer is probably not 41
 +    The answer is probably not 43
 +
 +
 +
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/control_structures/continue.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz