Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

const char *

char * const

What is the differnce between the above two?

Answer Posted / p s

const char *s; is a non-const pointer to const char
char * const s; is a const pointer to non-const char

Once u assign a value to the const poinet it cannot be
reassigned another value till u use casting techniques..

char a = 'A';
char b = 'B';
char *const c = &a;
c = &b; //flags an errror

const char *s = &a;
s = &b //works

Is This Answer Correct ?    19 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are the decision making statements in C++? Explain if statement with an example?

1084


What is the difference between interpreters and compilers?

1179


Can a constructor return a value?

1242


What is a vector c++?

1171


Is there a sort function in c++?

995


When must you use a pointer rather than a reference?

1033


What language is a dll written in?

1020


Are vectors faster than arrays?

996


What kind of problems can be solved by a namespace?

1090


Explain what data encapsulation is in c++?

1093


What is flush programming?

1013


What is the this pointer?

1112


Define macro.

1081


What is vector pair in c++?

1221


What is function overloading c++?

1076