Le lun 27/10/2003 � 06:05, Mike McCormack a �crit :
> Hi Subhobroto,
>
> Vincent B�ron wrote:
>
> >> }
> >>+
> >>//////////////////////////////////////////////////////////////////////////////////////
> >>+ char szTemp[MAX_PATH]={0};
> ...
>
> > Please don't use // style comments. Not all C compilers accept them.
>
> Please don't use any features of C++. The above variable declaration is
> not valid C either (it needs to be at the start of a block).
Doesn't C99 support that?
Of course, older compilers don'tm, so it's best to avoid.
Vincent