Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!sdd.hp.com!caen!uflorida!haven!adm!smoke!gwyn From: gwyn@smoke.brl.mil (Doug Gwyn) Newsgroups: comp.lang.c Subject: Re: Just a little something that has been bothering me. Message-ID: <14694@smoke.brl.mil> Date: 9 Dec 90 02:07:25 GMT References: <1990Nov30.180913.20890@clear.com> <1990Dec08.222943.1581@cs.widener.edu> Organization: U.S. Army Ballistic Research Laboratory, APG, MD. Lines: 10 In article <1990Dec08.222943.1581@cs.widener.edu> sven@cs.widener.edu (Sven Heinicke) writes: -What is quicker? - int a = 0,i = 0; -or - int a,i; - i = a = 0; -and why? -This type of thing has been bothering me for a long time. Why would you care? They're obviously not going to be bottlenecks..