In C++ whats the difference between
char const *ptr=&ch;
and
const char *ptr=&ch;
|
|
They are the same, i.e. However And just to complete the set, |
|||||||
|
|
Const applies to whatever is on its immediate left (other than if there is nothing there in which case it applies to whatever is its immediate right). So there is no difference.
|
|||
|
|
|
Other answers have covered the technical solution - your two examples are the same. Many people prefer to read from right to left when dealing with A rather extreme example:
From right to left this reads as 'A constant function |
|||||
|
|
But In case of |
||||
|
|
