您好,登錄后才能下訂單哦!
這篇文章主要介紹“C語言迷惑行為有哪些”,在日常操作中,相信很多人在C語言迷惑行為有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C語言迷惑行為有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
代碼0:
#include<stdio.h> int main(void) { int c = 5; switch(c) { case 0 ... 10: printf("0-->10\n"); break; case 11 ... 20: printf("11-->20\n"); break; default: printf("other\n"); } return 0; }
輸出結果:
0-->10
以上特性被常見編譯器支持,但是標準中并未提到。
代碼1
#include<stdio.h> int main(void) { printf("%m\n"); return 0; }
輸出結果:
Success
等價于:
printf("%s\n",stderr(errno));
由于你的代碼前面并沒有執行出錯設置errno,因此errno會是0,而對應的描述信息就是Success。
代碼2
#include<stdio.h> int main(void) { int i = 10; printf("%zu\n",sizeof(i++)); printf("%zu\n",sizeof(++i)); printf("%d\n",i); return 0; }
輸出結果:
4 4 10
sizeof實際作用的對象是類型。sizeof中的表達式本身并不會被執行。
代碼3
#include <stdio.h> #include <unistd.h> int main(void) { while(1) { fprintf(stdout,"公眾號"); fprintf(stderr,"編程珠璣"); sleep(10); } return 0; }
輸出結果:
編程珠璣編程珠璣編程珠璣
為什么不會輸出公眾號呢?原因在于標準輸入默認是行緩沖,而標準錯誤是無緩沖。這在《那些奇奇怪怪的緩沖問題》中已經有解釋了。
代碼4
#include <stdio.h> int main(void) { int a = 10; switch(a) { int b = 20; case 10: printf("%d\n",a + b); break; default: printf("%d\n",a + b); break; } return 0; }
輸出結果:
10
switch中的int b = 20,并不會被執行,你編譯時就會發現有警告。
代碼4
#include <stdio.h> int main(void) { printf("%c\n",4["hello 公眾號編程珠璣"]); return 0; }
輸出結果:
o
等價于:
char *str = "hello 公眾號編程珠璣"; printf("%c\n",str[4]);
代碼5
//來源:公眾號編程珠璣 //https://www.yanbinghu.com #include<stdio.h> int main(void) { char arr[] = {'h','e','l','l','o'}; printf("%s\n",arr);//災難!,可能會崩潰 return 0; }
代碼6
沒啥用,還會core dump的超短代碼,可以編譯運行:
main=0;
代碼7
#include<stdio.h> int main(void) { int arr[] = {5,4,3,2,1}; for(int i = -1; i < sizeof(arr)/sizeof(int) - 1; i++) { printf("%d\n",arr[i+1]); } printf("end\n"); return 0; }
輸出結果:
end
原因也很簡單,sizeof(arr)/sizeof(int)的結果是unsigend, int類型的i 和unsigned比較,被轉換為一個很大的unsigned數,所以for循環的條件不滿足。
代碼8
#include<stdio.h> test() { long b = 12345678987654321; return b; } int main(void) { long a = test(); printf("%ld\n",a); return 0; }
輸出結果:
1653732529
代碼9
#include<stdio.h> int main(void) { float a = 3; int b = 2; printf("%d\n",a/2); return 0; }
輸出結果:
1199094392
原因:浮點數在計算機中按照IEEE754標準存儲
到此,關于“C語言迷惑行為有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。