Tagged Questions

87
votes
17answers
3k views

What's the point of const pointers?

I'm not talking about pointers to const values, but const pointers themselves. I'm learning C and C++ beyond the very basic stuff and just until today I realized that pointers are passed by value to ...
40
votes
8answers
1k views

Does const-correctness give the compiler more room for optimization?

I know that it improves readability and makes the program less error-prone, but how much does it improve the performance? And on a side note, what's the major difference between a reference and a ...
31
votes
3answers
492 views

Const correctness in C vs C++

I understand what const correctness means and my question is not about what const correctness is. So I am not expecting an explanation or C++-FAQ links for that. My questions are: What are the ...
28
votes
10answers
999 views

Shall I prefer constants over defines?

In C, shall I prefer constants over defines? I've reading a lot of code lately, and all of the examples make heavy use of defines.
25
votes
4answers
883 views

const char* and char const* - are they the same?

From my understanding, const modifiers should be read from right to left. From that, I get that: const char* is a pointer whose char elements can't be modified, but the pointer itself can, and ...
21
votes
1answer
1k views

What's the point of const void?

Apparently, it is possible to declare a function returning const void: const void foo() { } g++ seems to consider the const important, because the following code does not compile: #include ...
20
votes
7answers
5k views

Why can't I convert 'char**' to a 'const char* const*' in C?

The following code snippet (correctly) gives a warning in C and an error in C++ (using gcc & g++ respectively, tested with versions 3.4.5 and 4.2.1; MSVC does not seem to care): char **a; const ...
19
votes
4answers
980 views

Why is multiple definition of a const global variable allowed in C++ and not in C?

Multiple definition of a global variable is not allowed in C or C++ due to the One Definition Rule. However, in C++ a const global variable can be defined in multiple compilation units with no error. ...
15
votes
4answers
406 views

Duplicate const qualifier allowed in C but not in C++?

Sample code snippet const const const int x = 10; int main() {} gets compiled in C but not in C++. Why does it get compiled in C? I thought this would fail in C as well. Never mind. Which part ...
14
votes
6answers
378 views

Can adding 'const' to a pointer help the optimization?

I have a pointer int* p, and do some operations in a loop. I do not modify the memory, just read. If I add const to the pointer (both cases, const int* p, and int* const p), can it help a compiler to ...
14
votes
3answers
262 views

idiomatic C for const double-pointers

I am aware that in C you can't implicitly convert, for instance, char** to const char** (c.f. C-Faq, SO question 1, SO Question 2). On the other hand, if I see a function declared like so: void ...
14
votes
12answers
2k views

What use are const pointers (as opposed to pointers to const objects)?

I've often used pointers to const objects, like so... const int *p; That simply means that you can't change the integer that p is pointing at through p. But I've also seen reference to const ...
14
votes
8answers
7k views

const int vs. int const as function parameter in C++ and C

Quick question: int testfunc1 (const int a) { return a; } int testfunc2 (int const a) { return a; } Are these two functions the same in every aspect or is there a difference? I'm interested ...
12
votes
4answers
153 views

Is const-casting via a union undefined behaviour?

Unlike C++, C has no notion of a const_cast. That is, there is no valid way to convert a const-qualified pointer to an unqualified pointer: void const * p; void * q = p; // not good First off: ...
12
votes
5answers
8k views

Is the sizeof(enum) == sizeof(int), always?

Is the sizeof(enum) == sizeof(int), always ? Or is it compiler dependent? Is it wrong to say, as complier are optimized for word lengths (memory alignment) ie y int is the word-size on a particular ...
12
votes
7answers
6k views

What does a const pointer-to-pointer mean in C and in C++?

I know the rule-of-thumb to read declarations right-to-left and I was fairly sure I knew what was going on until a colleague told me that: const MyStructure** ppMyStruct; means "ppMyStruct is a ...
11
votes
4answers
319 views

Can I pass constant pointers disguised as arrays?

void foo(const char *s); is equivalent to: void foo(const char s[]); Are there similar equivalents to the following two? void foo(char * const s); void foo(const char * const s);
10
votes
2answers
89 views

Can a function pointer with a const argument be used as a function pointer with a nonconst argument?

Perhaps the title isn't clear in itself... I have a function f (provided by some library) that takes as an argument a function pointer of signature void g(int*), i.e. void f(void (*g)(int*)); ...
10
votes
3answers
177 views

Why does bsearch return a void *?

void * bsearch ( const void * key, const void * base, size_t num, size_t size, int ( * comparator ) ( const void *, const void * ) ...
10
votes
4answers
245 views

In C, are const variables guaranteed to be distinct in memory?

Speaking of string literals, the C99 standard says (6.4.5.6): It is unspecified whether these arrays are distinct provided their elements have the appropriate values. If the program attempts to ...
10
votes
1answer
538 views

Double pointer const-correctness warnings in C

You can obviously cast a pointer to non-const data to a a pointer of the same type to const data: int *x = NULL; int const *y = x; Adding additional const qualifiers to match the additional ...
9
votes
4answers
12k views

Variably modified array at file scope

I want to create a constant static array to be used throughout my Objective-C implementation file similar to something like this at the top level of my ".m" file: static const int NUM_TYPES = 4; ...
8
votes
6answers
577 views

Const before or const after?

To start you probably know that const can be used to make either an object's data or a pointer not modifiable or both. const Object* obj; // can't change data Object* const obj; // can't change ...
8
votes
2answers
3k views

Why doesn't gcc allow a const int as a case expression?

I was looking at this SO question and got to thinking about const ints versus #defines and realized I don't actually understand why the compiler can't deal with this. Could someone shed some light as ...
8
votes
10answers
1k views

How much memory does a constant take in C?

when doing like this: const int a = 5; I wonder if a will get 4-byte of memory just like a variable ? (in 32 bit system)
7
votes
1answer
191 views

why a “char*” can point to a “const char*”?

the following code can be compiled correctly on both VC or gcc: char *str = "I am a const!"; str[2] = 'n'; however, obviously there is a run-time-error. Since "I am a const!" is a const char*, why ...
7
votes
2answers
310 views

What is the purpose of const qualifier if I can modify it through a pointer in C? [closed]

Possible Duplicate: Does the evil cast get trumped by the evil compiler? Hello, If I can modify a constant through a pointer, then what is the purpose of it? Below is code: #include ...
7
votes
5answers
113 views

Why the following will produce segmentation fault?

int main() { char *temp = "Paras"; int i; i=0; temp[3]='F'; for (i =0 ; i < 5 ; i++ ) printf("%c\n", temp[i]); return 0; } Why ...
7
votes
8answers
2k views

Why can I change the value of a const char* variable?

Why does the following code in C work? const char* str = NULL; str = "test"; str = "test2"; Since str is a pointer to a constant character, why are we allowed to assign it different string ...
6
votes
1answer
104 views

Is it Undefined Behaviour to cast away the constness of a function parameter?

Imagine I have this C function (and the corresponding prototype in a header file) void clearstring(const char *data) { char *dst = (char *)data; *dst = 0; } Is there Undefined Behaviour in ...
6
votes
5answers
203 views

What is the result of the Reference Operator “&” on const variables?

I was asked how can a value of a const variable can be changed. My my obvious answer was "pointers!" but I tried the next piece of code and I'm puzzled... int main() { const int x = 5; int ...
6
votes
3answers
146 views

const array const {}

So you can do this: void foo(const int * const pIntArray, const unsigned int size); Which says that the pointer coming is read-only and the integer's it is pointing to are read-only. You can ...
6
votes
6answers
312 views

Are string literals const?

Both GCC and Clang do not complain if I assign a string literal to a char*, even when using lots of pedantic options (-Wall -W -pedantic -std=c99): char *foo = "bar"; while they (of course) do ...
6
votes
11answers
659 views

Confused when I should and shouldn't use “const” in C

I have a dictionary that goes like this: typedef struct dictNode { int key; char *value; struct dictNode *next; } Dict; And a get() function that goes like this: char *get(const Dict ...
5
votes
2answers
156 views

Easy rule to read complicated const declarations?

For reading complex pointer declarations there is the right-left rule. But this rule does not mention how to read const modifiers. For example in a simple pointer declaration, const can be applied ...
5
votes
3answers
162 views

Pointer to const string in C

char *p = "string"; //creates pointer to constant string char p[] = "string"; //just an array with "string" I'm just a bit confused about why does it in the first example create a pointer to a ...
5
votes
4answers
238 views

Is there a cost to “const”?

Compilers can sometime exploit the fact that some 'variable' is a constant for optimization, so it's generally a good idea to use the "const" keyword when you can, but is there a tradeoff? In short, ...
5
votes
10answers
507 views

Is there const in C?

This question may be naive, stupid, or an exact duplicate (I couldn't find it). is there const keyword in C? since which version? are there any semantic and/or syntactic differences between const in ...
5
votes
6answers
1k views

C function const multidimensional-array argument strange warning

Ehllo, I'm getting some strange warning about this code: typedef double mat4[4][4]; void mprod4(mat4 r, const mat4 a, const mat4 b) { /* yes, function is empty */ } int main() { mat4 mr, ma, ...
5
votes
2answers
382 views

How does “const” differ in C and C++?

How does the const qualification on variables differ in C and C++? from: Does "const" just mean read-only or something more? (in C/C++) "What prompted this question was this answer: ...
5
votes
6answers
3k views

Why is passing a string literal into a char* argument only sometimes a compiler error?

I'm working in a C, and C++ program. We used to be compiling without the make-strings-writable option. But that was getting a bunch of warnings, so I turned it off. Then I got a whole bunch of errors ...
5
votes
5answers
629 views

Dynamic memory inside a struct

I'm editing a piece of code, that is part of a big project, that uses "const's" to initialize a bunch of arrays. Because I want to parametrize these const's I have to adapt the code to use "malloc" in ...
5
votes
11answers
4k views

What is the difference between a static and const variable?

Can someone explain the difference between a static and const variable?
5
votes
7answers
1k views

C: Behaviour of the `const` keyword

I've been told that if I'm coding in ANSI-C to declare in the order that the variables will be used, assert that pointers are not null and that indices are within bounds, and to initialize just before ...
5
votes
5answers
1k views

Are strtol, strtod unsafe?

It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string: #include <stdlib.h> #include <stdio.h> int main() { const char *foo = "Hello, ...
5
votes
5answers
10k views

How does one declare an array of constant function pointers in C?

I need to declare an array of pointers to functions like so: extern void function1(void); extern void function2(void); ... void (*MESSAGE_HANDLERS[])(void) = { function1, function2, ... }; ...
4
votes
6answers
150 views

C — Accessing a non-const through const declaration

Is accessing a non-const object through a const declaration allowed by the C standard? E.g. is the following code guaranteed to compile and output 23 and 42 on a standard-conforming platform? ...
4
votes
4answers
312 views

what does the “const void*” mean in memmove?

The second arg in the prototypes for memmove/memcpy/strcpy are similar: For example: void *memmove(void *dest, const void *src, size_t n); //const void* char *strcpy(char *dest, const char *src); ...
4
votes
6answers
150 views

const values in C

This code doesn't compile: const int x = 123; const int y = x; It complains that "initializer element is not constant" for the y= line. Basically I want to have two const values, one defined in ...
4
votes
4answers
280 views

C99 const pass-by-value

I have been studying the GNU Scientific Library source code and I keep seeing the following type of declarations: double cblas_ddot (const int N, const double * x, const int incx, const double * y, ...

1 2 3