Oh ok didn't knew that. but just in case for another ascii-character like 75 int a=75;
and i wanna convert that one to an ascii-character is there a winapi function oder a usual library function wich i can use for it ?
and here just another question to it.
when i use a char array with values like that :
char *x={ Aa01 , Bb02 } ;
is a array like that :
char x[8];
equeal to that :
char x[8]={ Aa01, Bb02 }; = = char x[0]=A , x[1]=a , x[2]=0 , x[3]=1 , x[4]=B , x[5]=b , x[6]=0 , x[7]=2 x[8]='\0';
or are only the first two arrays with the values declared :
char x[0]= Aa01 , x[1]= Bb02;
i only wanna knew or get a correction of my thoughts - help is really appreciated - thx.
later
cd