printf函数

功能

向显示器上输出一段信息

格式

printf("hello,world\n"); // 一般后面加 \n  表示换行
printf("1 + 1 = %d\n". 1 + 1); // %d 占位符

评论