[comp.lang.c] order of eval question

merlyn@starfire.UUCP (Brian Westley) (12/31/87)

Are the order of auto initializers specified?
For example:

foo()
{
    int x=fn1(), y=fn2();
    ...
}

Is fn1 called before fn2, or is it unspecified?

Not in K&R, how about the ANSI version?

Merlyn LeRoy