first lesson of c and c++

基础知识

//单行注释
/*多行注释
include 宏 导入头文件
如果系统已经提供某些功能的实现
只需要使用include将这些功能所在的头文件导入进来就行
<>导入的头文件是系统提供的类库:stdio.h stdlib.h math.h string.h(编译器优先在系统类库查找)
""自己定义的头文件:calculate.h (编译器优先在自己定义的头文件查找)
*/

/*
main()函数=代码块=完成特定功能
所有程序的入口点都是main函数
int返回值 记录当前程序的运行状态
0:正常结束-资源自由分配 非0:1 异常结束-没收
int argc:参数个数 argument count
char *argc[]:每个参数组成的字符串数组
*/

/*
printf 输出语句
\n换行
\t一个缩进(相当于tab)
变量 记录数据
int 整型数据 1 2 3 4 5
long 长整型
float 单精度浮点数 1.4
double 双精度浮点数
char 字符
string 字符串
short 短整型
bool 是否
基本数据类型 共同点:只能存一个值
不同点:占据空间不同
printf("%d",sizeof(int)); //4个字节
终端 console 口
scanf 输入:终端输入
*/

int main(int argc,char *argv[]){
    printf("%d",argc); 
        printf("%s",argv[0]);
        printf("%d",sizeof(int)); 
        printf("%d",sizeof(long)); 
}

你可能感兴趣的:(first lesson of c and c++)