[C/C++ 基礎]-純C++_數字和字串直接合併的函數應用
[C/C++ 基礎]-純C++_數字和字串直接合併的函數應用
本篇要分享純C++_數字和字串直接合併的函數應用,有興趣的(C/P)同好,歡迎來(C/P)一下哈哈 ^ ^。
程式碼 |
/* sprintf example */
#include <stdio.h>
int main () {
char buffer [50]; int n, a=5, b=3; n=sprintf (buffer, "%d plus %d is %d", a, b, a+b);
printf ("[%s] is a %d char long string\n",buffer,n);
return 0; }
|