Showing posts with label const. Show all posts
Showing posts with label const. Show all posts

Tuesday, 23 April 2013

Constant Pointer

  1. int const* ptr;
  2. const int*ptr;
  3. int *const ptr;
  4. const int* const ptr;
  5. int const*const ptr;