本人學習筆記只針對本人,因為本來較懶,不善於整體筆記,所以筆記估計只有本人看懂!
今天學習指標強制型別轉換
int main(void);
int *p1 = a;
printf("*p1 = 0x%x\n", *p1);
char *p2 = (char *)a;
printf("*p2 = 0x%x\n", *p2);
printf("*p2 = 0x%x\n", *(p2+1));
printf("*p2 = 0x%x\n", *(p2+2));
printf("*p2 = 0x%x\n", *(p2+3));
printf("*p2 = 0x%x\n", *(p2+4));
printf("*p2 = 0x%x\n", *(p2+5));
列印結果如下:
*p1 = 0x68753344
*p2 = 0x44
*p2 = 0x33
*p2 = 0x75
*p2 = 0x68
*p2 = 0xffffffa0 //1個位元組儲存的數為44,正常列印,當儲存的數》=80時,0xffffff**;
*p2 = 0xffffff80
學c語言不到半年,老師作業
include stdio.h include malloc.h include stdlib.h typedef int elemtype struct lnode struct lnode head setnull int n 0 creat 建立乙個單鏈表 p1 next null print...
學習翁愷老師c語言歷程 初次
include 判斷數的位數 int main dowhile num 0 printf 這個數的位數是 d count 總結 對 有了乙個新的認識,依次去掉個位數 從後向前數,計算機與人是很大的不同,計算機處理步驟的,而非關係。include include include 猜數遊戲 0 100之...
程式設計入門 C語言(翁愷老師)作業
第1周 程式設計與c語言1 輸出 hello world 5分 題目內容 請輸出一行,內容為 hello world 請注意大小寫。由於這一周只是簡單地介紹了c程式的基本框架,還不能做很多事情,甚至還不能做資料的輸入,所以這一周的題目也非常簡單。輸入格式 無輸入輸出格式 一行文字 輸入樣例 無輸出樣...