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

Name four predefined macros.

789


What is the this pointer?

810


What is an adjust field format flag?

858


Is c++ an integer?

764


Out of fgets() and gets() which function is safe to use?

848


int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}

1016


What is the use of endl in c++ give an example?

865


Is map ordered c++?

810


What is the benefit of encapsulation?

810


Explain terminate() function?

787


What is flush () in c++?

794


Write a program which employs Recursion

971


Do you need a main function in c++?

792


Do you know the use of vtable?

842


Mention the purpose of istream class?

807