July 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.


July 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.
>
>