Last updated 1 year ago
Was this helpful?
注释 :编译器忽视
/* xxxxxxxxxxxxx */
变量声明: 在 c 语言中,所有变量必须先声明后使用。声明通常放在函数起始处。在任何可执行语句之前。
int fahr, celsius;
基本数据类型: 这些数据类型的大小取决于具体机器 machine dependent
int float char short long double