首页 > 代码库 > C/C++ 自学之旅 - 实战1 - 格式化Hello World!

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

先上效果图:

技术分享

再看看代码,非常简单:

#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!