The const keyword is used only during compile-time. After the code is compiled the variable is just an address in the memory, without any special protection.
There is some difference, however - global const variables will be placed in the text segment, not the data (if initialized) or bss (if uninitialized). If the text segment is treated differently, for example executed in place from a NOR flash memory (instead of RAM), there might be a difference. Local const variables are placed on the stack together with the regular variables, so there should be no difference.
Other than that, as bestsss said, some compile time optimizations might be impossible if the variable is a constant. I can't really think of anything (especially not in pure C), but it is theoretically possible.
Edit:
The following code demonstrated the point in the second paragraph:
const int g = 1;
int not_const = 1;
void foo(int param)
{
int i = 1;
const int j = 1;
printf("Variable: \t\t0x%08x\n", (int)&i);
printf("Const varialbe: \t0x%08x\n", (int)&j);
printf("Parameter: \t\t0x%08x\n", (int)¶m);
printf("Global const: \t\t0x%08x\n", (int)&g);
printf("Global non-const: \t0x%08x\n", (int)¬_const);
}
In Visual Studio 2010, the result is as follows (note the big difference between the const and non-const global):
Variable: 0x002af444
Const varialbe: 0x002af440
Parameter: 0x002af43c
Global const: 0x00a02104
Global non-const: 0x00a03018
constin C does not mean constant. That doesn't negate the spirit of your question though. – detly Jun 1 '11 at 5:39constdoes sometimes mean constant. For example, the compiler is allowed to assume that the value of aconst intnever changes. Not so aconst volatile int, or the referand of aconst int*, so it doesn't mean constant in general. – Steve Jessop Jun 1 '11 at 8:03const== constant – detly Jun 1 '11 at 8:24