黑馬 C語言的一些基礎 1

2021-09-30 16:19:43 字數 1095 閱讀 5577

for迴圈語句 

用for迴圈計算1~100的和 

#include

#include

int main(void)  

printf("1+2+3+…-+99+100=%d\n",sum); 

return 0;  }

用#define定義巨集

#define name 替換字串 

#include

#include

#define top 0 

#define bottom 99

#define step 1  

int convert(int x);       

int main(void)  

system("pause");  return 0; 

}  system("pause");  return 0; }  

int convert(int x)

用const定義常量

用const定義的常量是不可改變的。 

可通過初始化方式賦初值,也可以通過外部硬體因素修改其值 但不可通過賦值語句修改值。 

字元輸入輸出函式

1.getchar()和putchar()函式 intgetchar(void);   intputchar(intch); 

2.scanf()和printf()函式 scanf(「%c,%d」,&ch,&i) 

intprintf(const char* control_string,„); intscanf(const char* control_string,„); 

scanf()和printf()都採用了線緩衝器佇列。 

%c--------代表字元型 

%d--------代表整形 

%u--------代表無符號整形 

%ld--------代表長整形 

%f---------代表浮點型(輸出)

%s--------代表字串 

scanf()輸入字串時,以空白字元作為輸入結束符,記為』\0』 

3.gets()和put()函式 char*gets(char* str); intputs(const char* str);

C語言的一些基礎

一 c語言基礎 1.1 main函式是入口函式,用於進行link。1.2 sln是解決方案的管理檔案。1.3 int 32位 short 16位 long 32位 long long 64位。1.5 巨集的使用時很不安全的。1.6 常量名字的命名規則是 全大寫。1.7 明示常量存在於 1.8 反彙編...

C語言的一些基礎

一 c語言基礎 1.1 main函式是入口函式,用於進行link。1.2 sln是解決方案的管理檔案。1.3 int 32位 short 16位 long 32位 long long 64位。1.5 巨集的使用時很不安全的。1.6 常量名字的命名規則是 全大寫。1.7 明示常量存在於 1.8 反彙編...

C語言一些基礎語法

1,程式中以 開頭的語句成為預處理命令 2,實型常量 小數形式,指數形式 字元常量 a 字串常量 a 雙引號 3,ddd 1 3位八進位制數所代表的ascii碼 xhh 1 2位十六進製制數所代表的ascii碼 0 空字元 4,sizeof 求位元組數運算子 sizeof double 表示求雙精度...