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

View File

@@ -29,6 +29,7 @@ int main(void)
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 */
@@ -36,6 +37,7 @@ int main(void)
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;