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

25
LC19/ConstHashDefine.c Normal file
View File

@@ -0,0 +1,25 @@
#include <stdio.h>
//macro definition
#define X 30
//global integer constant
const int Y = 10;
int main()
{
//local integer constant`
const int Z = 20;
printf("Value of X: %d\n", X);
printf("Value of Y: %d\n", Y);
printf("Value of Z: %d\n", Z);
// #undef X
// #define X 300
// printf("Value of X: %d\n", X);
// Y = 30;
return 0;
}