Author name: admin

In C, which operator is used for pointer-to-pointer relationships?

In C, which operator is used for pointer-to-pointer relationships? a) & (ampersand) b) * (asterisk) c) -> (arrow) d) [] (brackets) Answer: b) * (asterisk) Explanation: In C, the asterisk (*) operator is used to declare and manipulate pointers, including pointer-to-pointer relationships. A pointer-to-pointer is essentially a pointer that stores the address of another pointer.

In C, which operator is used for pointer-to-pointer relationships? Read More »

In a Doubly Linked List, what does the first node’s previous pointer point to?

Java MCQ: In a Doubly Linked List, what does the first node’s previous pointer point to? A) The second node B) The last node C) Itself D) Null Answer: D) Null Explanation: In a Doubly Linked List, the first node’s previous pointer points to null. This indicates that the first node does not have any

In a Doubly Linked List, what does the first node’s previous pointer point to? Read More »

Scroll to Top