int length = 10; char len = length + '0'; printf("%c", len); This gave me : for 58 on the ascii chart not 10 that I wanted. The ascii chart shows that int 10 is ... ... <看更多>
Search
Search
int length = 10; char len = length + '0'; printf("%c", len); This gave me : for 58 on the ascii chart not 10 that I wanted. The ascii chart shows that int 10 is ... ... <看更多>
... <看更多>
Nice, I'm looking to take an int value in seconds and convert to hr:min:sec before I strcat([c string],[time]) as I understand, I'll have to ... ... <看更多>