(C语言)每日代码||2023.12.24||printf断行的三种方法

发布时间 2023-12-24 14:08:17作者: Kazuma_124
#include <stdio.h>
int main() {
	//给printf断行的三种方法
	//一
	printf("Here's one way to print a ");
	printf("long string.\n");
	//二
	printf("Here's another way to print a \
long string.\n");
	//三
	printf("Here's the newest way to print a "
		"long string.\n");
	return 0;
}