/ ************************************************************************
*
* 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 09:52, local time: 2012/5/23 16:08,
38.107.179.234:LOG IN |
| ©2012 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://www.piclist.com/tecHREF/language/ccpp/cref/EXAMPLES/do.c"> language ccpp cref EXAMPLES do</A> |
| Did you find what you needed? |
|
|
|
Ubicom SX18 thru SX52, PIC 16c5X compatibile, 50 to 75 MIPS microcontrollers! Now US customers can buy the Excellent SXDev from SXList.com for $150 + $15 import fee + s&h (~ $180 total+tax in CA) |
.