Path: utzoo!attcan!uunet!yale!cmcl2!lanl!jlg From: jlg@lanl.gov (Jim Giles) Newsgroups: comp.lang.c Subject: Re: fortran to C converter Message-ID: <12786@lanl.gov> Date: 27 Apr 89 21:40:32 GMT References: <10134@smoke.BRL.MIL> Organization: Los Alamos National Laboratory Lines: 14 From article <10134@smoke.BRL.MIL>, by gwyn@smoke.BRL.MIL (Doug Gwyn): > [...] There are many instances in C coding when the natural > expression of a simple statement (not talking about entire loops, etc., > but rather things like expression statements) simply does not fit on a > single line within such a length limit. [...] But, this is clearly (and observably) a _LESS_ common situation than when the statement _does_ fit on a single line. Even when indenting is used heavily for flow control display, the overwhelming majority of the code consists of one statement per line. In the comparatively rare instance when a statement must span several lines, an explicit continuation character could be used (NO - I don't mean Fortran and always column 6, etc.). That way, the majority of statements wouldn't need the redundant semicolon (and the concurrent threat of error if you accidentally omit it).