摘要:
#include int main () { /* 局部变量声明 */ int a, b; int c; /* 实际初始化 */ a = 10; b = 20; c = a + b; printf ("value of a = %d, b = %d and c = %d\n", a, b, c); return 0; } #include... 阅读全文
摘要:
return_type function_name( parameter list ) { body of the function } /* 函数返回两个数中较大的那个数 */ int max(int num1, int num2) { /* 局部变量声明 */ int result; if (num1 > num2) result = num1;... 阅读全文
摘要:
while(condition) { statement(s); } #include int main () { /* 局部变量定义 */ int a = 10; /* while 循环执行 */ while( a int main () { /* for 循环执行 */ for( int a = 10; a int main ... 阅读全文
摘要:
if(boolean_expression) { /* 如果布尔表达式为真将执行的语句 */ } #include int main () { /* 局部变量定义 */ int a = 10; /* 使用 if 语句检查布尔条件 */ if( a int main () { /* 局部变量定义 */ int a = 100; ... 阅读全文
摘要:
#include int main() { int a = 21; int b = 10; int c ; c = a + b; printf("Line 1 - c 的值是 %d\n", c ); c = a - b; printf("Line 2 - c 的值是 %d\n", c ); c = a * b; printf("Li... 阅读全文
摘要:
{ int mount; auto int month; } { register int miles; } #include /* 函数声明 */ void func1(void); static int count=10; /* 全局变量 - static 是默认的 */ int main() { while (count--) {... 阅读全文