Difference between const char* p and char const* p?
There is no difference between const char *p and char const *p as both are pointer to a const char and position of '*'(asterik) is also same. 2. char *const ptr : This is a constant pointer to non-constant character. You cannot change the pointer p, but can change the value pointed by ptr.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is istream and ostream in c++?
Explain about templates of C++.
How would you call C functions from C++ and vice versa?
What is binary search in c++?
What do you know about near, far and huge pointer?
Eplain extern keyword?
Can you sort a set c++?
What is a template in c++?
What is this pointer in c++?
What is implicit pointer in c++?
What are the uses of pointers?
What is purpose of abstract class?