Tag: C interview questions
C interview questions, These are very important interview questions specially for experienced as well freshers.
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
Q67 What is dynamic memory allocation and how to allocate memory dynamically?
Please click on the link to know about DMA