在C語言中,可以使用printf
函數來輸出文字。如果要輸出兩行不同的文字,可以在兩次printf
函數調用中分別指定不同的文字。
下面是一個示例代碼:
#include <stdio.h>
int main() {
printf("Hello, world!\n"); // 輸出第一行文字
printf("This is a new line.\n"); // 輸出第二行文字
return 0;
}
運行以上代碼,將會輸出:
Hello, world!
This is a new line.
其中,\n
是轉義字符,表示換行。