通用方法用sprintf
#include int main(void) { char str[100]; int n=1234; sprintf(str,"%d",n); puts(str); return 0;}