Initial commit of lecture code

This commit is contained in:
Louise Brown
2022-04-07 16:58:01 +01:00
commit 5b205092a7
60 changed files with 2413 additions and 0 deletions

26
LC11/loop_into_array.c Normal file
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 */
}