Tag: C questions
C questions for exam preparation, campus interview preparation and C skills/knowledge build up.
Q70 What is the difference between const char *ptr, char * const ptr, and const char * const ptr?
const char *ptr – This is a pointer to a constant char. One cannot change the value pointed at by