格式化輸入和輸出

某朝發表於2024-09-26

修改字串

//用sprintf把buffer字串格式化
sprintf(buffer, "Age: %d, Height: %.1f", age, height);

從字串讀取資料

// 使用 sscanf 從字串中讀取資料
sscanf(data, "%d %lf", &age, &height);

相關文章