修改字串
//用sprintf把buffer字串格式化
sprintf(buffer, "Age: %d, Height: %.1f", age, height);
從字串讀取資料
// 使用 sscanf 從字串中讀取資料
sscanf(data, "%d %lf", &age, &height);
修改字串
//用sprintf把buffer字串格式化
sprintf(buffer, "Age: %d, Height: %.1f", age, height);
從字串讀取資料
// 使用 sscanf 從字串中讀取資料
sscanf(data, "%d %lf", &age, &height);