move exercises, lecture examples, labs into subfolders

This commit is contained in:
2023-10-13 16:19:51 +01:00
parent a602f20e01
commit 015b5d6a08
200 changed files with 2 additions and 2 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 */
}