I've known that
for (...; ...; ...)
printf ("Fulfill the limits.");
and
if (...)
printf ("Fulfill the limits.");
are C standard.
But
for (...; ...; ...)
if (...)
for (...; ...; ...)
if (...)
for (...; ...; ...)
printf ("Fulfill all the limits.");
is compiled successfully, and run without (logic) errors.
Does complicated-nested for/if statement really follow the C standards or just mingw32 compiler-specific?
Any reference?
Thanks.