Mayank's C/C++ Challenger III
Sorry for the delay in comming up with this post in the C/C++ Challenger Series. This time I again have something from the C++ corner😁.
Question:
How would you write a constant reference to a constant pointer to integer
int i = 10 ;
int *const ptr = &i ;
So the syntax of the "integer" and the "pointer" is given. Tell me the way you will write the asked reference.
Hoping for a lots of replies.;-)
Thanks and Regards,
Mayank Shukla.