摘要:
标识符;声明和定义区别;常量;变量;使用示例 标识符: 变量和常量的统称。 命名规则: 1. 通常常量使用大写、变量使用小写。大小写严格区分。 2. 只能使用字母、数组、下划线(_)命名标识符。且,数字不能开头。 a-z/A-Z/0-9/_ int a5ir = 10; int _34F = 6; 阅读全文
摘要:
hello_world.c #include <stdio.h> #include <Windows.h> //#include 表示引入头文件 //stdio.h 系统标准输入、输出对应的头文件,提供printf函数服务 //<>:系统库函数;"":用户自定义库函数 #include "xxxxx 阅读全文