Q. What do you call this C Function calling itself.?
Code:
int funny2()
{
funny2(num);
}
β
Correct Answer: (D)
Recursive Function
int funny2()
{
funny2(num);
}
You must be Logged in to update hint/solution