Difference between #define and const in C


The #define is preprocessor directives. So when we define some macro using #define, it replaces into the code with its value before compilation. So when the compiler does not know anything about the code, in that time also the macro values are replaced.

The constant is actually a variable. By declaring this variable, it occupies memory unit. But we cannot update the value of constant type variable directly. We can change it using some pointer values.

Sometimes programmer may think that using macro is better than const, as this is not taking any additional space into the memory, but for some good compilers, the optimized code will not affect. They are very similar.

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Jul-2019

684 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements