ptr is a constant pointer to an integer-02562
ptr is a constant pointer to an integer
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Final Term - Quiz No.5.
ptr is a constant pointer to an integer
const * int myptr;
const int *myptr;
int const *ptr;
int *const ptr;