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

Is c better than c++?

1079


Is c# written in c++?

988


What is string in c++ programming?

1200


What is time_t c++?

1141


Can we use this pointer inside static member function?

1076


What is general form of pure virtual function? Explain?

1002


Why c++ is the best language?

1072


Will this c++ program execute or not?

1103


Specify different types of decision control statements?

859


What is heap sort in c++?

1074


What is type of 'this' pointer? Explain when it is get created?

1017


Is swift better than c++?

950


What is c++ stringstream?

1111


What is the difference between #define debug 0 and #undef debug?

1193


What is the use of :: operator in c++?

1132