move exercises and lectures into subfolders

This commit is contained in:
2023-10-15 15:34:53 +01:00
parent 775b4bd643
commit 74092a17aa
177 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/* A very simple program that defines an array of ten integers */
/* And puts a different value into each */
#include <stdio.h> /* Usual includes */
#include <stdlib.h>
int main( void )
{
int Values[10]; /* Define an array of 10 integers */
int j; /* Define an integer 'j' */
/* Use a loop to put some values into the array, displaying the */
/* vaules stored on the screen */
for ( j = 0 ; j < 10 ; j++ )
{
Values[j] = j * 2;
printf("\nThe value in array index %d is %d ",j,Values[j]);
}
return 0; /* End of the program */
}