Home » C Programming » Pointers » Question
  1. What is the syntax for constant pointer to address (i.e., fixed pointer address)?
    1. <type> const * <name>
    2. const <type> * <name>
    3. <type> * const <name>
    4. All of above
    5. None of these
Correct Option: C

<type> * const <name>



Your comments will be displayed only after manual approval.