quick questions about char arrays
letMeIn
Posts: 15
can I do this ?
char temp[]='12345'
integer num
num=atoi(temp[2])
In the end this is what im looking for num=2
char temp[]='12345'
integer num
num=atoi(temp[2])
In the end this is what im looking for num=2
0
Comments
num=atoi("temp[2]")