delete the second character of a string?
Hi all,
I'm looking for a solution to retrieve ( or copy) the second character of a string.
My program is:
int iNum=0;
char sNum[2]="";
//Somewhere in the program, the integer iNum=92
// Then
sprintf (sNum,"%d",iNum);
And I want to delete the first character of the string sNum, but i don't know how can i do?
Or I want to retrieve the second character of the string sNum which is the value '2' in order to put it to another string, but i don't know how can i do?
In sumarize, I want that sNum="2"; or another string ="2"; I don't want to get the whole value iNum. I only want the last value of it.
Thanks for your help
Bye
batteur91
|