This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Lectures/LC9/ForLoops/for_loops.c

45 lines
763 B
C
Raw Permalink Normal View History

2022-04-07 15:58:01 +00:00
/* Example Program */
/*
This program shows how to write a simple loop that counts up
from zero to 9.
A second loop then counts from 10 down to 1
Remember
j++ means j = j + 1
j-- means j = j - 1
*/
#include <stdio.h> /* Standard include files */
#include <stdlib.h>
int main(void)
{
char j; /* Define a variable of type integer */
/* The count up loop */
printf("\nCounting Up ... ");
for ( j = 0 ; j < 10 ; j++ )
printf("\nThe value of j is %d",j );
printf("\nThe value of j after increment loop is %d",j);
2022-04-07 15:58:01 +00:00
/* The count down loop */
printf ("\nCounting Down .. ");
for ( j = 10 ; j > 0 ; j-- )
printf("\nThe value of j is %d",j );
printf("\nThe value of j after decrement loop is %d",j);
2022-04-07 15:58:01 +00:00
return 0;
}