Partially changed file structure to suit VSCode

This commit is contained in:
Louise Brown
2022-10-24 14:01:59 +01:00
parent 1c0a9e7b6a
commit a2c8695634
29 changed files with 30 additions and 21 deletions

44
LC9/ForLoops/for_loops.c Normal file
View File

@@ -0,0 +1,44 @@
/* 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);
/* 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);
return 0;
}