c 基礎語法

2022-08-03 02:30:23 字數 1219 閱讀 4074

噹噹噹噹!

時間過的真的好快,c語言已經學完了,開始學c++了,部落格也沒有堅持寫,新階段新開始嘛,希望能按時寫奧!

作用域:不可以在同乙個作用域下宣告兩個相同名字的變數

1 #include 2

using

namespace

std;

3int age = 300;//

注釋掉這行

4namespace

person58

namespace

bird913

using

namespace

bird;

14int

main()

15

1 #include 2

using

namespace

std;

3int

main()

4

1 #include 2

using

namespace

std;34

void show(int a ,int b , int c = 2, int d = 3);5

intmain()6;

9}10//

不能再函式實現中加引數,如果函式宣告中已存在則重複定義,如果沒有則格式錯誤

11void show(int a ,int b , int c , int

d )12

1

for(auto i : arr)//

auto可自動識別arr中型別

2

函式名相同,函式引數個數或型別不同

值傳遞,位址傳遞和引用

1 #include 2

using

namespace

std;

3void num(int a,int

b);4

void adress(int *a,int *b);

5void yinyong(int &aa, int &bb);

6int

main()719

void num(int a,int

b)20

26void adress(int *a,int *b)

2732

void yinyong(int &a, int &b)

33

C 基礎語法

最近開始學習c 程式語言,以前一直使用c c 也只是用到了一些最簡單基礎的用法。為了方便學習,將學習過程中c 語言與c c 不同或不熟悉之處記錄下來,以便日後隨時檢視。本人是通過閱讀 c 入門經典 第6版 學習c 在閱讀過程中隨手作如下記錄。變數在使用之前必須對其進行宣告和初始化。switch每個分...

C 基礎語法

簡介 c語句是面向結構的語言,c 是物件導向的語言,c 從根本上已經發生質飛躍,並對c進行豐富的擴充套件。c是c 的子集,所以大部c語言程式都可以不加修改的拿到c 下使用。c 不完全同於c語言,c語言,可以完全植入c 檔案 變數,指標,變數,迴圈,記憶體等 c 不完全相容c c 語言函式名是不能重名...

C 語法基礎

先宣告再賦值 string strs new string 3 int arr new int 3 strs 0 null true,預設為null arr 0 0,預設為0 strs 報錯,不能這樣賦值 宣告並初始化,都正確 string strs new string 3 string strs...