在C语言中,可以使用`printf`函数结合转义字符`\n`来实现分两行输出。以下是一些示例代码:
使用两次`printf`函数调用
```c
include int main() { printf("Hello, world!\n"); // 输出第一行文字 printf("This is a new line.\n"); // 输出第二行文字 return 0; } ``` ```c include int main() { printf("第一行\n第二行"); return 0; } ``` ```c include int main() { printf("Hello\nWorld\n"); return 0; } ``` 这些方法都可以实现将输出内容分为两行。建议根据具体需求和代码结构选择合适的方法。在字符串中使用转义字符`\n`
在字符串中连续使用多个`\n`