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

9
LC4/hello_world.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
/* My first program in C */
printf ("Hello World \n");
return 0; // Return from prog
}

BIN
LC4/hello_world.exe Normal file

Binary file not shown.