Home » C Programming » Pointers » Question
  1. Which of the following declaration will result in run-time error?
    1. int **ptr = &*ptr;
    2. int **ptr= **ptr;
    3. int **ptr = &ptr;
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.