C编程。我(再次)学习C,我正在制作一些基本程序。这个涉及一个获取int的函数。该函数使用strcat
将其添加到字符串中。问题是strcat
没有采取措施。所以,我的问题,一个简单的问题,就是如何将int转换为char。 (我用Google搜索并查看了您的网站。itoa
不会抱歉...)
这是我的代码
char total[1000];
strcat(total, "I am");
char buff[1024];
sprintf(buff, "%s %d", total, age);
strcat(total, msg);
printf("%s", total);