Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the difference between:

char * const 

and

const char *
share|improve this question
I'm pretty sure that const * char isn't going to compile, at least not in C... – ahockley May 20 '09 at 22:18
const = 5; char = 4; if ((const * char) == 20) puts("20"); //;-> – jrcs3 May 20 '09 at 22:23
8  
Did you mean "char * const and const char *"? – Andrew Coleson May 20 '09 at 22:23

10 Answers

up vote 57 down vote accepted

If you meant the difference between

const char *

and

char * const

then the difference is that const char * is a pointer to a const char, while char * const is a constant pointer to a char.

The first, the value being pointed to can't be changed but the pointer can be. The second, the value being pointed at can change but the pointer can't (similar to a reference).

There is also a

const char * const

which is a constant pointer to a constant char (so nothing about it can be changed).

Note:

The following two forms are equivalent:

const char *

and

char const *

The exact reason for this is described in the C++ standard, but it's important to note and avoid the confusion. I know several coding standards that prefer:

char const

over

const char

(with or without pointer) so that the placement of the const element is the same as with a pointer const.

share|improve this answer
Would it be worthwhile to note what happens if multiple variables are specified in the same declaration? I believe const int *foo,*bar; would declare both foo and bar to be int const *, but int const *foo, *bar would declare foo to be a int const * and bar to be int *. I think typedef int * intptr; const intptr foo,bar; would declare both variables to be int * const; I don't know any way to use a combined declaration to create two variables of that type without a typedef. – supercat Apr 12 at 21:57

To avoid confusion, always append the const qualifier.

int       *      mutable_pointer_to_mutable_int;
int const *      mutable_pointer_to_constant_int;
int       *const constant_pointer_to_mutable_int;
int const *const constant_pointer_to_constant_int;
share|improve this answer

const * char is invalid C code and is meaningless. Perhaps you meant to ask the difference between a const char * and a char const *, or possibly the difference between a const char * and a char * const?

See also:

share|improve this answer
1  
++for referencing existing questions. I added another... – Shog9 May 20 '09 at 22:34

const char* is a pointer to a constant character
char* const is a constant pointer to a character
const char* const is a constant pointer to a constant character

share|improve this answer

const always modifies the thing that comes before it (to the left of it), EXCEPT when it's the first thing in a type declaration, where it modifies the thing that comes after it (to the right of it).

So these two are the same:

int const *i1;
const int *i2;

they define pointers to a const int. You can change where i1 and i2 points, but you can't change the value they point at.

This:

int *const i3 = (int*) 0x12345678;

defines a const pointer to an integer and initializes it to point at memory location 12345678. You can change the int value at address 12345678, but you can't change the address that i3 points to.

share|improve this answer

First one is a syntax error. Maybe you meant the difference between

const char * mychar

and

char * const mychar

In that case, the first one is a pointer to data that can't change, and the second one is a pointer that will always point to the same address.

share|improve this answer

1) const char* is basically a character pointer which is pointing to a constant value

2) char* const is refer to character pointer which is constant, but the location it is pointing can be change.

3) const char* const is combination to 1 and 2, means it is a constant character pointer which is pointing to constant value.

4) const *char will cause a compiler error. it can not be declared.

5) char const * is equal to point 1.

the rule of thumb is if const is with var name then the pointer will be constant but the pointing location can be changed , else pointer will point to a constant location and pointer can point to another location but the pointing location content can not be change.

share|improve this answer

I presume you mean const char * and char * const .

The first, const char *, is a pointer to a constant character. The pointer itself is mutable.

The second, char * const is a constant pointer to a character. The pointer cannot change, the character it points to can.

And then there is const char * const where the pointer and character cannot change.

share|improve this answer
Your first two are actually the same and your third is a compiler error :) – workmad3 May 20 '09 at 22:22
Whoops, you are right. Fixed. – Michael May 20 '09 at 22:23

Another thumb rule is to check where const is:

  1. before * => value stored is constant
  2. after * => pointer itself is constant
share|improve this answer

Here is a detailed explanation with code

/*const char * p;
char * const p; 
const char * const p;*/ // these are the three conditions,

// const char *p;const char * const p; pointer value cannot be changed

// char * const p; pointer address cannot be changed

// const char * const p; both cannot be changed.

#include<stdio.h>

/*int main()
{
    const char * p; // value cannot be changed
    char z;
    //*p = 'c'; // this will not work
    p = &z;
    printf(" %c\n",*p);
    return 0;
}*/

/*int main()
{
    char * const p; // address cannot be changed
    char z;
    *p = 'c'; 
    //p = &z;   // this will not work
    printf(" %c\n",*p);
    return 0;
}*/



/*int main()
{
    const char * const p; // both address and value cannot be changed
    char z;
    *p = 'c'; // this will not work
    p = &z; // this will not work
    printf(" %c\n",*p);
    return 0;
}*/
share|improve this answer
@reese moore Thank you. – Megharaj Apr 18 at 6:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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