0 0 votes Which of the following statements about pointers in $C$ are TRUE.Pointers can be used to access array elementsPointers can store the address of another pointerPointers are automatically deferenced in expressionPointers cannot be used to access structure membersChoose the correct answer from the options given below:$(I)$ and $(III)$ Only$(I)$ and $(II)$ Only$(II)$ and $(III)$ Only$(III)$ and $(IV)$ Only Programming in C ugcnetcse-aug2024 programming-in-c pointers data-structures + – Shubham Sharma 2 284 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
1 1 vote A B are correct options. C option false due to dereference operator * must be mention while declaring a pointer if you not mention * then the complier treating as a variable. D false Muppuri_Malyadri answered Oct 28, 2025 Muppuri_Malyadri comment Share Follow 0 reply Please log in or register to add a comment.