c++ - display a constant
- noobi <noobi_member pathlink.com> Jul 09 2003
- "Walter" <walter digitalmars.com> Jul 09 2003
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








"Walter" <walter digitalmars.com>