定義常量的兩種方式
#define age 30
和const int age = 30;
指標變數(**)
變數型別
#include
int main()
字串簡單操作
#include
int main();
char a1[6] = ;
char b[30] = "hello";
char c[15] = "programgirl";
char d[15];
strcpy(d,b); //將第二個變數賦值給第乙個變數
printf("a=%s\na1=%s\nb=%s\nd=%s\n", a, a1, b, d);
strcat(b,c); //將第二個變數拼接在第乙個變數的後面
printf("a=%s\na1=%s\nb=%s\nd=%s\n", a, a1, b, d);
printf("a-length:%d\n",strlen(a));
printf("a1-length:%d\n",strlen(a1));
printf("b-length:%d\n",strlen(b));
/*結果
a=hello
a1=hello
b=hello
d=hello
a=hello
a1=hello
b=helloprogramgirl
d=hello
a-length:5
a1-length:5
b-length:16
*/return
0;}
結構體struct
和typedef
#include
//定義結構體 person
struct person
;//定義結構體 teams, typedef 為 team型別取乙個新名字 team
typedef
struct teams
team;
typedef
int num;
int main()
C語言簡單知識點概括
include include int main void 只能有乙個主體 1 第一種 int main void c語言標準主函式形式 2 第二種 int main int argc,char ar c 標準主函式形式,使用命令列引數 3 第三種 int main c 主函式形式 4 第四種 ma...
C 語言常見的簡單知識點
原內容在 裡面是有一些錯誤的!但是我下面總結的東西,沒錯誤!下面的內容,我只總結我需要的 1.編譯預處理不是 cc 語言的一部分,不佔 執行時間,不要加 分號。c 語言編譯的程式稱為源程式,它以 ascii 數值 存放在 文字檔案 2.c 語言只有 八 十 十六 進製,沒有二進位制 但是 執行時候,...
c語言 知識點
遞迴方法 遞迴相比迴圈時間上快些,但是 遞迴比較占用空間,如果遞迴的次數超過十萬次後會導致資源占用完畢 標準的 優化技巧 消除迴圈 函式迴圈 函式 就地擴充套件 公共子表示式消除 改進暫存器分配 省略執行時對陣列邊界的檢查 迴圈不變數 移動 操作符長度消減 把指數操作符轉變為乘法操作 把乘法操作變為...