在C语言中,可以使用转义字符\n来显示多行文字。例如:
\n
#include <stdio.h> int main() { printf("Hello,\nWorld!"); return 0; }
输出结果为:
Hello, World!
其中\n表示换行。你可以在需要换行的地方使用\n来显示多行文字。