文章列表
#include stdio.h#define ADJUST 7.31// one kind of symbolic constantint main(void){const double SCALE = 0.333;// another kind of symbolic constant
#include stdio.h#define ADJUST 7.31// one kind of symbolic constantint main(void){const double SCALE = 0.333;// another kind of symbolic constant
显示每个结果三次:显示小数点右边的4位数,显示小数点右边的12位数字,显示小数点右侧的16位数字。
sizeof运算符将变量名称或数据类型作为参数,并返回将数据存储在内存中所需的字节数。
以下代码通过将数组大小除以数组数据类型的大小来计算数组中包含的元素数。
可以使用sizeof运算符计算出给定类型占用的字节数。以下是如何存储应用sizeof运算符产生的值:
可以在不指定标记的情况下创建枚举类型的变量,因此没有枚举类型名称。因为没有类型名称,所以以后在代码中无法定义此类型的其他变量。
使用枚举,可以定义一个新的整数类型,其中类型的变量具有固定的可能值范围。以下是定义名称为Weekday的枚举类型的语句示例:
#include stdio.h/* global variable declaration */int g;int main () {/* local variable declaration */
#include stdio.hint main () {/* local variable declaration */int a, b;int c;/* actual initialization */