/ ************************************************************************ * * Purpose: Program to demonstrate the 'do' statement. * Author: M J Leslie * Date: 26-Jan-94 * ************************************************************************/ #include <stdio.h> main() { int i=1; /* Define an integer variable. */ /* * The block is executed. Then the i <= 10 * expression is evaluated. If TRUE the block * is executed again. */ do { printf ("i is %i\n", i); i++; } while (i <= 10); }
file: /Techref/language/ccpp/cref/EXAMPLES/do.c, 0KB, , updated: 1997/4/21 08:52, local time: 2024/11/5 19:07,
18.191.103.28:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/language/ccpp/cref/EXAMPLES/do.c"> language ccpp cref EXAMPLES do</A> |
Did you find what you needed? |