Possible Duplicate:
“static const” vs “#define” in c

I started to learn C in these days. And couldn't understand clearly differences between macros and constant variables.

What changes when I write,

#define A 8

and

const int A = 8

?

link|improve this question

56% accept rate
3  
+1 @Cogwheel. @erkangur, try the search box before posting duplicates. – Carl Norum Jul 9 '10 at 21:46
Ok. next will be an unique one – erkangur Jul 9 '10 at 23:12
feedback

closed as exact duplicate by James McNellis, Jerry Coffin, Carl Norum, Cogwheel - Matthew Orlando, Alok Jul 9 '10 at 21:47

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 2 down vote accepted

Macros are handled by the pre-processor - the pre-processor does text replacement in your source file, replacing all occurances of 'A' with the literal 8.

Constants are handled by the compiler. They have the added benefit of type safety.

For the actual compiled code, with any modern compiler, there should be zero performance difference between the two.

link|improve this answer
feedback

For one thing, the first will cause the preprocessor to replace all occurrences of A with 8 before the compiler does anything whereas the second doesn't involve the preprocessor

link|improve this answer
feedback

You can write

#define A 8
int arr[A];

but not

const int A = 8;
int arr[A];

if I recall the rules correctly.

link|improve this answer
1  
No, both will work. – Michael Jul 9 '10 at 21:48
@Michael: Nope, at least not if gcc is used. "foo.c:2: error: variably modified ‘arr’ at file scope" – swegi Jul 9 '10 at 21:51
You are correct. I missed the C tag on the question. What I said holds true for C++. – Michael Jul 9 '10 at 22:27
feedback

Macro-defined constants are replaced by the preprocessor. Constant 'variables' are managed just like regular variables.

For example, the following code:

#define A 8
int b = A + 10;

Would appear to the actual compiler as

int b = 8 + 10;

However, this code:

const int A = 8;
int b = A + 10;

Would appear as:

const int A = 8;
int b = A + 10;

:)

In practice, the main thing that changes is scope: constant variables obey the same scoping rules as standard variables in C, meaning that they can be restricted, or possibly redefined, within a specific block, without it leaking out - it's similar to the local vs. global variables situation.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.