Is there a maximum length for a statement defined in C?
compiler is gcc
|
|
The standard specifies a minimum translation limit:
The standard recommends however that "implementations should avoid imposing fixed translation limits whenever possible". A logical source line is the result of backslash-newline splicing (5.1.1.2:1.2), so this doesn't directly cover the minimum limit for the number of characters in a statement. However, because another translation limit requirement is:
and as string literals may only occur in statements, it follows that the implementation must accept at least one 4095-character statement. Ignoring literals, we also see:
and as a function call must include at least 2 characters per argument, plus 4 for the invocation ( |
|||||
|
|
The C standard lays down a variety of lower bounds on the complexity of the language that must be accepted by a compiler, but not a limit on the length of a statement per se.
As you can see, footnote 18 would discourage the imposition of such a restriction. Having said all that, I'd hate to see a single statement that encroached on the limits. It had better be machine-generated and not human written. |
||||
|
|