Code Example Using ++
# include <stdio.h>
main ( )
{
int i = 1 ;
/* count from 1 to 10 */
while ( i < 11 )
{
printf (“%d ”, i) ;
i++ ;
}
}
Previous slide
Next slide
Back to first slide
View graphic version