Liste des Groupes | Revenir à cl c |
Anyone having sufficient knowledge of the semanticsI can't believe you're a professional developer when you repeatedly
knows the answer. Likewise for these C functions:
void Infinite_Recursion(u32 N)
{
Infinite_Recursion(N);
}
int factorial(int n)
{
if (n >= 1)
return n*factorial(n-1);
else
return 1;
}
void Infinite_Loop()
{
HERE: goto HERE;
}
Les messages affichés proviennent d'usenet.