轉義字元 "\n" 在 C 中的作用是換行符,用於在文字輸出中強制換行,以便文字輸出換到下一行。它也用於建立多行字串,控制輸出格式和執行檔寫入操作。
C 中的\n 的作用
在C 中,轉義字元"\n" 表示換行符,用於在文字輸出中強制換行。
用途
"\n" 有以下主要用途:
<code class="cpp">cout << "行 1" << "\n" << "行 2";</code>
輸出:
<code>行 1 行 2</code>
<code class="cpp">string paragraph = "第 1 段\n" "第 2 段\n" "第 3 段";</code>
<code class="cpp">cout << left << setw(20) << "姓名" << "\n" << left << setw(20) << "邮箱";</code>
輸出:
<code> 姓名 邮箱</code>
<code class="cpp">ofstream file("output.txt"); file << "行 1" << "\n" << "行 2";</code>
檔案內容:
<code>行 1 行 2</code>
以上是c++中的\n有什麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!