本课知识点
C,C++第一个程序
生成程序
输出窗口
生成程序所在目录
新建->项目 Ctrl+Shift+N
C:\Users\Administrator\Source\Repos\L001\Debug\
include <stdio.h>
void main( )
{
printf("我的第一个程序 hello world!");
getchar();
}
void main( ) //001-识记入口函数名 main
{ //左大插号表示一段代码的开始
printf("我的第一个程序 hello world!"); //向控制台屏幕输出引号里的字符串
getchar(); //getchar()等待键盘输入一个字符,按回车后继续执行下一行代码
}//右大括号表示一段代码结束
//总结:
//1-入口函数 也叫程序入口点main
//2-头文件 include指令来包含 SDK的头文件用<> 自写头文件""
//3-函数的概念,函数名main,函数代码块的 开始与结束
//4-#include <stdio.h> //stdio.h 是C语言标准的输入输出头文件
//5-getchar() 等待键盘输入一个字符
//项类型 .c后缀就是按照C语言的标准来编译 如果选的.cpp后缀 默认就是C++标准来编译
//注释 单行注释
https://www.runoob.com/cprogramming/c-tutorial.html
推荐 网站
https://www.runoob.com/cprogramming/c-tutorial.html //C语言
https://www.runoob.com/cplusplus/cpp-tutorial.html //C++语言