If I have a recursive function in Java, I can call it infinitely with the following code:
void recfunction()
{
recfunction();
System.gc();
}
How can I do this in C++?
If I have a recursive function in Java, I can call it infinitely with the following code:
void recfunction()
{
recfunction();
System.gc();
}
How can I do this in C++?