码迷,mamicode.com
首页 > 编程语言 > 详细

C/C++ 自学之旅 - 实战1 - 格式化Hello World!

时间:2017-07-24 18:53:44      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:c++   code   format   技术   输出   ima   return   .com   通配符   

先上效果图:

技术分享

再看看代码,非常简单:

#include<stdio.h>

int main(){
    printf("Hello World.");//输出字符串“Hello World.”
    return 0;//退出程序
}

最后解释一下输出函数printf()的语法:

1、这个函数需要引用stdio.h头文件

2、语法说明:

 int __cdecl printf(const char * __restrict__ _Format,...); 

参数Format规定输出格式,该参数后面的省略号表示根据该参数内定义的类型通配符传入对应的输出内容,必须一一对应。

 

  int __cdecl printf(const char * __restrict__ _Format,...);

C/C++ 自学之旅 - 实战1 - 格式化Hello World!

标签:c++   code   format   技术   输出   ima   return   .com   通配符   

原文地址:http://www.cnblogs.com/luoshuai/p/7230127.html

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