C Programming and Technical

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();
}

Read Solution (Total 0)

C Other Question

Q. What is difference between declaration and definition?

A. During declaration we just specify the type and no memory is allocated to the variable. But during the definition an initial value is assigned and memory is allocated to the variable.
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.