You can use sprintf to do it, or maybe snprintf if you have it: char str[ENOUGH]; sprintf(str, "%d", 42);. Where the number of characters (plus terminating ...
確定! 回上一頁