InterviewSolution
Saved Bookmarks
| 1. |
Const Char *p , Char Const *p What Is The Difference Between The Above Two? |
Answer»
However if you had something like: char * const p - This DECLARES 'p' to be a constant pointer to an char. (Char p is modifiable but the pointer isn't) However if you had something like: char * const p - This declares 'p' to be a constant pointer to an char. (Char p is modifiable but the pointer isn't) |
|