const char *
char * const
What is the differnce between the above two?
Answer Posted / sahithi
const char* /*string is fixed pointer is not*/
char *const /*pointer is fixed string is not*/
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which should be more useful: the protected and public virtuals?
Is there any difference between int [] a and int a [] in c++?
What are keywords in c++?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
How can you link a c program with a c function?
How the virtual functions maintain the call up?
Difference between class and structure.
When do we run a shell in the unix system?
Explain friend class?
How to declare a function pointer?
Should the this pointer can be used in the constructor?
Name the operators that cannot be overloaded in C++?
What is a loop? What are different types of loops in c++?
What are vectors used for in c++?
Should the member functions which are made public in the base class be hidden?