首頁 >後端開發 >C++ >如何在 C 中轉換數字和字串?

如何在 C 中轉換數字和字串?

Barbara Streisand
Barbara Streisand原創
2024-12-27 02:00:08313瀏覽

How to Convert Numbers and Strings in C  ?

C 中數字和字串之間的轉換

將整數轉換為字串

要將整數轉換為C 中的字串,請使用std:: to_string函數:

std::string intToString = std::to_string(123);

將字串轉換為整數

要將字串轉換為整數,請使用std::stoi 函數:

int stringToInt = std::stoi("456");

將浮點數轉換為字串

對於浮點數,使用std::to_string函數:

std::string floatToString = std::to_string(12.34);

將字串轉換為浮點數

要將字串轉換為浮點數,請使用 std::stof 函數:

float stringToFloat = std::stof("56.78");

以上是如何在 C 中轉換數字和字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn