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
Name four predefined macros.
What is the this pointer?
What is an adjust field format flag?
Is c++ an integer?
Out of fgets() and gets() which function is safe to use?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What is the use of endl in c++ give an example?
Is map ordered c++?
What is the benefit of encapsulation?
Explain terminate() function?
What is flush () in c++?
Write a program which employs Recursion
Do you need a main function in c++?
Do you know the use of vtable?
Mention the purpose of istream class?