...
Non-Compliant Code Example (implicit int)
C90 Section 6.5.2 allowed for the absence of type specifiers in a declaration. In which case, the type was defined to be that of a signed int
.
Don't rely on implicit int
typing. C99 Section 6.7.2, "Type specifiers" states:
...