首页 > 代码库 > printf函数的多行写法

printf函数的多行写法

#include <stdio.h>
#include <stdlib.h>

int main(void) {

	// Method One
	printf("Line-1");
	printf("Line-1\n");

	// Method Two
	printf("Line-2Line-2\n");

	// Method Three
	printf("Line-3"
			"Line-3\n");

	return EXIT_SUCCESS;
}


printf函数的多行写法