+ 1
Different between define and const in c
What different between define and const in c programming Where is usage of its
4 Respostas
+ 3
you can't change the value of define but you can change that of const with a pointer
+ 2
The #define preprocessor statement will replace all things by another...
Exemple :
#define A 10
int b = A; //before compilation this line is equal to int b = 10;
+ 1
Tanx sir
0
Can we change the value it?