This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/LC19/ConstHashDefine.c
2022-04-07 16:58:01 +01:00

26 lines
346 B
C

#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;
}