Monday, December 5, 2011

sprintf和printf的区别

printf() 把内容送显示器.
sprintf() 把内容送字符串.
其他的都一样 。
printf函数调用的一般形式为:
printf(“格式控制字符串”,输出表列)
把整数123 打印在显示屏上显示出来。 \ }TY"xP
printf( "%d", 123);
把整数123 打印成一个字符串保存在s 中。 \ }TY"xP
sprintf(s, "%d", 123);

No comments:

Post a Comment