July 09, 2003 display a constant | ||||
---|---|---|---|---|
| ||||
Hi, #include <stdio.h> #define test 9; main(){ printf("%i",test); } When i compile it i get an error : "expected ')'" I would like display just 9 (without using a variable but a constant). if anyone can help me. Thank you. |
July 09, 2003 Re: display a constant | ||||
---|---|---|---|---|
| ||||
Posted in reply to noobi | Remove the ';' after the '9' and it should work. -Walter "noobi" <noobi_member@pathlink.com> wrote in message news:bei3ae$acq$1@digitaldaemon.com... > Hi, > > #include <stdio.h> > > #define test 9; > > main(){ > > printf("%i",test); > > } > > When i compile it i get an error : "expected ')'" > I would like display just 9 (without using a variable but a constant). > > if anyone can help me. > Thank you. > > |
Copyright © 1999-2021 by the D Language Foundation