You can use the itoa function from C to convert an int to string. example#include int main() { int a = 10; char *intStr = itoa(a); s ...
確定! 回上一頁