please dont rip this site

language ccpp cref EXAMPLES while

/ ******************************************************************
 *
 * Purpose: Program to demonstrate the 'while' statement.
 * Date:    20-Feb-94
 * Author:  M J Leslie.
 *
 ******************************************************************/

#include <stdio.h>

main()
{
    int i=1;  /* Define an integer variable. */
         
    /*
     * i <= 10 expression is evaluated. If TRUE the 
     * block is executed.
     */

    while (i <= 10)
    {
        printf ("i is %i\n", i);
        i++;
    }
}


file: /Techref/language/ccpp/cref/EXAMPLES/while.c, 0KB, , updated: 1998/11/3 04:59, local time: 2012/5/23 16:21,
TOP NEW HELP FIND: 
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?
Please DO link to this page! Digg it! / MAKE! / 

<A HREF="http://www.piclist.com/tecHREF/language/ccpp/cref/EXAMPLES/while.c"> language ccpp cref EXAMPLES while</A>

Did you find what you needed?

 
miSim DE is an excellent, portable and powerful IDE for developing PIC applications.
Editor, assembler, disassembler and simulator w/ virtual component "plugins" (LED,LCD,key,motor,TV,etc).
 

Peter Todd has released source and sample projects for his artwork, including his 3d wireframe cube renderer for the PIC 18f6520 This includes examples of hardware developed with free software tools such as gEDA/gschem/PCB, SDCC, gputils and picp all on Linux. http://petertodd.ca/art/source-code/

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .