Path: utzoo!utgpu!water!watmath!clyde!att!pacbell!ames!haven!ncifcrf!nlm-mcs!adm!smoke!gwyn From: gwyn@smoke.ARPA (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: Unnecessary Parenthesis Message-ID: <8577@smoke.ARPA> Date: 25 Sep 88 05:59:40 GMT References: <2089@ssc-vax.UUCP> <441@kaon.uchicago.edu> <1401@devsys.oakhill.UUCP> <23@datcon.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB)) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 5 In article <23@datcon.UUCP> sar@datcon.co.uk (Simon A Reap) writes: > z = square(x) + square(y); >Does anyone know how to get round this problem? Please!! z = x*x + y*y;