Liste des Groupes | Revenir à c theory |
On 5/20/2024 6:31 AM, immibis wrote:Since it is an UTTER LIE that we do not have a sufficient knowledge of the semantic of the C programming langage.On 20/05/24 05:11, Richard Damon wrote:I cannot prove verified facts to liars or to people having insufficientNope. Make a claim, you need to prove it.>
You just made a claim. Prove that he needs to prove it.
knowledge of the semantics of the C programming language.
The halt status of the following C functions is entirely self-evidentSO, STRAWMEN. The fact that you resort to them just proves your incompentance.
to anyone having sufficient knowledge of the semantics of the C
programming language.
void Infinite_Recursion(u32 N)
{
Infinite_Recursion(N);
}
int factorial(int n) // called with 5
{
if (n >= 1)
return n*factorial(n-1);
else
return 1;
}
void Infinite_Loop()
{
HERE: goto HERE;
}
void This_Halts()
{
return;
}
Les messages affichés proviennent d'usenet.