C语言
-
if语句-C语言实例教程|
if 语句 #include stdio.h int main () { /* local variable definition */ int a = 10 ; /* check the boolean condition using if statement */ if ( a 20 ) { /* if condition is true then...
-
C中的运算符优先级-C语言实例教程|
C中的运算符优先级 #include stdio.h main () { int a = 20 ; int b = 10 ; int c = 15 ; int d = 5 ; int e ; e = ( a + b ) * c / d ; // ( 30 * 15 ) / 5 printf ( Value of (a + b) ...
-
C中的sizeof和三元运算符-C语言实例教程|
C中的sizeof和三元运算符 #include stdio.h main () { int a = 4 ; short b ; double c ; int * ptr ; /* example of sizeof operator */ printf ( Line 1 - Size of variable a = %d , ...
-
C中的赋值运算符-C语言实例教程|
C中的赋值运算符 #include stdio.h main () { int a = 21 ; int c ; c = a ; printf ( Line 1 - = Operator Example, Value of c = %d , c ); c += a ; printf ( Line 2 - += Operator Ex...
-
C中的按位运算符-C语言实例教程|
C中的按位运算符 #include stdio.h main () { unsigned int a = 60 ; /* 60 = 0011 1100 */ unsigned int b = 13 ; /* 13 = 0000 1101 */ int c = 0 ; c = a b ; /* 12 = 0000 1100 */ pr...
-
C中的逻辑运算符-C语言实例教程|
C中的逻辑运算符 #include stdio.h main () { int a = 5 ; int b = 20 ; int c ; if ( a b ) { printf ( Line 1 - Condition is true ); } if ( a || b ) { printf ( Line 2 - Condition ...
-
C中的关系运算符-C语言实例教程|
C中的关系运算符 #include stdio.h main () { int a = 21 ; int b = 10 ; int c ; if ( a == b ) { printf ( Line 1 - a is equal to b ); } else { printf ( Line 1 - a is not equal to...
-
C中的算术运算符-C语言实例教程|
C中的算术运算符 #include stdio.h main () { int a = 21 ; int b = 10 ; int c ; c = a + b ; printf ( Line 1 - Value of c is %d , c ); c = a - b ; printf ( Line 2 - Value of c is...
-
static关键字-C语言实例教程|
static 关键字 #include stdio.h /* function declaration */ void func ( void ); static int count = 5 ; /* global variable */ main () { while ( count -- ) { func (); } return 0 ; } ...
-
const关键字-C语言实例教程|
const 关键字 #include stdio.h int main () { const int LENGTH = 10 ; const int WIDTH = 5 ; const char NEWLINE = ; int area ; area = LENGTH * WIDTH ; printf ( value of area : %d , ...
-
#define预处理器-C语言实例教程|
#define 预处理器 #include stdio.h #define LENGTH 10 #define WIDTH 5 #define NEWLINE int main () { int area ; area = LENGTH * WIDTH ; printf ( value of area : %d , area ); printf...
-
字符常量-C语言实例教程|
字符常量 #include stdio.h int main () { printf ( Hello World ); return 0 ; }...
-
变量声明-C语言实例教程|
变量声明 #include stdio.h // Variable declaration: extern int a , b ; extern int c ; extern float f ; int main () { /* variable definition: */ int a , b ; int c ; float f ; /* a...
-
浮点类型-C语言实例教程|
浮点类型 #include stdio.h #include float.h int main () { printf ( Storage size for float : %d , sizeof ( float )); printf ( Minimum float positive value: %E , FLT_MIN ); printf ...
-
整数类型-C语言实例教程|
整数类型 #include stdio.h #include limits.h int main () { printf ( Storage size for int : %d , sizeof ( int )); return 0 ; }...
-
HelloWorld实例-C语言实例教程|
Hello World 实例 #include stdio.h int main () { /* my first program in C */ printf ( Hello, World! ); return 0 ; }...
-
C练习实例100-C语言100例|
C 练习实例100 题目: 有五个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号,姓名,三门课成绩),计算出平均成绩,况...
-
C练习实例99-C语言100例|
C 练习实例99 题目: 有两个磁盘文件A和B,各存放一行字母,要求把这两个文件中的信息合并(按字母顺序排列),输出到一个新文件C中。...
-
C练习实例98-C语言100例|
C 练习实例98 题目: 从键盘输入一个字符串,将小写字母全部转换成大写字母,然后输出到一个磁盘文件test中保存。 输入的字符串以!结束...
-
C练习实例97-C语言100例|
C 练习实例97 题目: 从键盘输入一些字符,逐个把它们送到磁盘上去,直到输入一个#为止。 程序分析: 无。 实例 // Created by www.codingdict....