C Programming - Functions - Discussion

Discussion Forum : Functions - True / False Questions (Q.No. 4)
4.
In C all functions except main() can be called recursively.
True
False
Answer: Option
Explanation:
Any function including main() can be called recursively.
Discussion:
7 comments Page 1 of 1.

Japneet Singh said:   2 years ago
Can predefined functions be called recursively? Please explain.

Velliyangiri said:   4 years ago
Yes, main is also a recursive function.

Raghvendra singh rajawat said:   10 years ago
main() can also be called recursively because it also a kind of function.

Vinod thete said:   1 decade ago
It is not except to call recursivly main.

Manishsoni said:   1 decade ago
Recursion: a function call it self is call recursion function;

main()
{
main();
}

It create infinite loop because main call itself so it is called recursion function.

Shalini said:   1 decade ago
What does recursion mean?

Ajeet kumar said:   1 decade ago
Please explain anybody in more detail with the help of example

Post your comments here:

Your comments will be displayed after verification.