Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - 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. Jul 09 2003
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. Jul 09 2003
|