This shows you the differences between two versions of the page.
| — |
c:control_structures:else [2024/02/16 01:04] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | {{keywords>wiki library source code example reference}} | ||
| + | ===== else ===== | ||
| + | |||
| + | <code c> | ||
| + | #include <stdio.h> /* including standard library */ | ||
| + | //#include <windows.h> /* uncomment this for Windows */ | ||
| + | |||
| + | if ( condition == true ){ | ||
| + | command; | ||
| + | } else { | ||
| + | command; | ||
| + | } | ||
| + | </code> | ||
| + | ===== 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<=99;i++){ | ||
| + | if (i==42) { | ||
| + | printf("I have found the answer: %i\n",i); | ||
| + | } else { | ||
| + | printf("found any other answer\n"); | ||
| + | } | ||
| + | } | ||
| + | |||
| + | return 0; | ||
| + | } | ||
| + | |||
| + | </code> | ||
| + | |||
| + | output of else | ||
| + | |||
| + | found any other answer | ||
| + | found any other answer | ||
| + | I have found a answer: 42 | ||