Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!taumet!steve From: steve@taumet.com (Stephen Clamage) Newsgroups: comp.lang.c Subject: Re: initialization Message-ID: <373@taumet.com> Date: 2 Aug 90 16:08:22 GMT References: <1990Aug1.011654.22068@ccu.umanitoba.ca> <1990Aug1.170117.21763@zoo.toronto.edu> Organization: Taumetric Corporation, San Diego Lines: 14 shirono@ssd.csd.harris.com (Roberto Shironoshita) writes: |> > int i = a, j = i + 1 ; |Would the comma (,) separating the two variables (i and j) be considered a |sequence point then? Or do we have no guarantees as to the value j is |initialized to? A sequence point occurs after an initialization. A comma as part of a comma-expression marks a sequence point, but the comma here is not such a comma. So this comma could be considered a sequence point in that it marks the end of the initialization expression. -- Steve Clamage, TauMetric Corp, steve@taumet.com