C語言學習筆記07

2021-10-25 16:12:26 字數 677 閱讀 4270

#define _crt_secure_no_warnings 1

#include

#include

intmain()

char ch =0;

char ret =0;

int clr =0;

char password[20]

=;printf

("請輸入密碼:>");

scanf

("%s"

, password)

;//輸入密碼,並存放在password陣列中

printf

("請確認(y/n):>");

//輸入123456\n,scanf只會讀取123456,輸入緩衝區中留下的\n被getchar讀走了

while

((ch =

getchar()

)!='\n'

) ret =

getchar()

;//scanf讀走123456後應該把輸入緩衝區清空

if(ret ==

'y')

else

char ch =0;

while

((ch =

getchar()

)!= eof)

return0;

}

C語言學習筆記07 結構體

2.列舉 為了表示一些複雜的事物,而普通的基本型別無法瞞住實際要求。把一些基本資料型別組合在一起形成的乙個新的符合資料型別,這就叫做結構體。第一種 struct student 第二種 struct student linjunjie 第三種 struct linjunjie 第二種和第三種在定義結...

C語言學習小結 07

一 指標辨析 我的電腦為小端機器,記憶體定址的基本單位是位元組,指標解引用的時候,掃過的位元組數由指標指向目標的變數型別決定,比如int 掃過4個位元組 每個位元組8個位元位 char 掃過乙個位元組,char 掃過4個位元組 32位平台下 下面以乙個很能說明問題的題目來表明指標的剖析。這裡涉及很多...

C語言學習筆記

include include void swap int p1,int p2 void swapa int arr,int n void printfa int arr,int n int main int argc,char argv swap i,j printfa array,6 swapa...