C
Programming and Technical
Q. What is self referential structure ?
A. A self-referential structure is one of the data structures which refer to the pointer to (points) to another structure of the same type.
Read Solution (Total 0)
C Other Question
Q. What is function recursion?
A. When a function of body calls the same function then it is called as 'recursive function.'
Example:
Recursion()
{
printf("Recursion !");
Recursion();
}
Q. What is far pointer?
A. The pointer which can point or access whole the residence memory of RAM i.e. which can access all 16 segments is known as far pointer