码迷,mamicode.com
首页 > 其他好文 > 详细

printf函数的多行写法

时间:2014-10-04 02:52:26      阅读:536      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   c   on   r   line   bs   as   

#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函数的多行写法

标签:io   ar   sp   c   on   r   line   bs   as   

原文地址:http://my.oschina.net/Xwoder/blog/324101

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!