diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2008-01-27 11:37:44 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2008-01-27 11:37:44 +0100 |
commit | 7e0f021a9aec35fd8e6725e87e3313b101d26f5e (patch) | |
tree | b1cacc4b24393f517aeb4610e9e1021f954307a8 /reference/C/EXAMPLES/for1.c |
Initial import (2.0.2-6)2.0.2-6
Diffstat (limited to 'reference/C/EXAMPLES/for1.c')
-rw-r--r-- | reference/C/EXAMPLES/for1.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/reference/C/EXAMPLES/for1.c b/reference/C/EXAMPLES/for1.c new file mode 100644 index 0000000..87e8202 --- /dev/null +++ b/reference/C/EXAMPLES/for1.c @@ -0,0 +1,23 @@ +/************************************************************************** + * + * Purpose: Program to demonstrate the 'for' statement. + * Author: M J Leslie + * Date: 26/01/94 + * + **************************************************************************/ + +#include <stdio.h> + +main() +{ + int i; /* Define an integer */ + /* + * i=1 is executed the first time into the loop. + * i<=10 is then tested, if true, the block is executed. + * ++1 is the increment, before i<=10 is retested. + */ + for (i=1; i<=10; ++i) + { + printf ("loop counter = %i\n", i); + } +} |