Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site udenva.UUCP Path: utzoo!decvax!genrad!panda!talcott!harvard!seismo!hao!nbires!boulder!cisden!udenva!lspirkov From: lspirkov@udenva.UUCP (Goldilocks) Newsgroups: net.lang.c Subject: Re: Quiz for Novice to Intermediate C Users Message-ID: <540@udenva.UUCP> Date: Sun, 21-Apr-85 20:20:04 EST Article-I.D.: udenva.540 Posted: Sun Apr 21 20:20:04 1985 Date-Received: Tue, 23-Apr-85 23:48:21 EST References: <> <> Reply-To: lspirkov@udenva.UUCP (Goldilocks) Distribution: na Organization: U of Denver Lines: 18 >on the line where you have: > a=b/*p; /* div b by ... */ > >the /* between the b and the p is the beginning of the comment, not >a div (/) and then a pointer (*). and the answer i got was 10. and that's >b/dum(a); (anyone know why dum(a) has the value 1???) > > Goldi wait, wait. don't answer yet. dum(a) doesn't have the value 1 because it's not really a=b/dum(a); it's really a=b dum(a); and since dum(x) is a blank macro, the equation is a=b; that's why the answer is 10. Goldi ps: i would have retracted my first message but i don't know how nor do i want to read the manual.