adspace
Answer Posted / Pramod Kumar Bharti
Yes, a structure can contain a pointer to itself. This is known as a recursive data structure. For example: `struct Node { int data; struct Node* next; };`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers