溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C語(yǔ)言迷惑行為有哪些

發(fā)布時(shí)間:2021-11-01 17:00:22 來(lái)源:億速云 閱讀:132 作者:iii 欄目:編程語(yǔ)言

這篇文章主要介紹“C語(yǔ)言迷惑行為有哪些”,在日常操作中,相信很多人在C語(yǔ)言迷惑行為有哪些問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C語(yǔ)言迷惑行為有哪些”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

代碼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; }

輸出結(jié)果:

0-->10

以上特性被常見(jiàn)編譯器支持,但是標(biāo)準(zhǔn)中并未提到。

代碼1

#include<stdio.h> int main(void) {     printf("%m\n");     return 0; }

輸出結(jié)果:

Success

等價(jià)于:

printf("%s\n",stderr(errno));

由于你的代碼前面并沒(méi)有執(zhí)行出錯(cuò)設(shè)置errno,因此errno會(huì)是0,而對(duì)應(yīng)的描述信息就是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; }

輸出結(jié)果:

4 4 10

sizeof實(shí)際作用的對(duì)象是類型。sizeof中的表達(dá)式本身并不會(huì)被執(zhí)行。

代碼3

#include <stdio.h> #include <unistd.h> int main(void)   {     while(1)     {         fprintf(stdout,"公眾號(hào)");         fprintf(stderr,"編程珠璣");         sleep(10);     }     return 0; }

輸出結(jié)果:

編程珠璣編程珠璣編程珠璣

為什么不會(huì)輸出公眾號(hào)呢?原因在于標(biāo)準(zhǔn)輸入默認(rèn)是行緩沖,而標(biāo)準(zhǔn)錯(cuò)誤是無(wú)緩沖。這在《那些奇奇怪怪的緩沖問(wèn)題》中已經(jīng)有解釋了。

代碼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; }

輸出結(jié)果:

10

switch中的int b = 20,并不會(huì)被執(zhí)行,你編譯時(shí)就會(huì)發(fā)現(xiàn)有警告。

代碼4

#include <stdio.h> int main(void)   {     printf("%c\n",4["hello 公眾號(hào)編程珠璣"]);     return 0; }

輸出結(jié)果:

o

等價(jià)于:

char *str = "hello 公眾號(hào)編程珠璣"; printf("%c\n",str[4]);

代碼5

//來(lái)源:公眾號(hào)編程珠璣 //https://www.yanbinghu.com #include<stdio.h> int main(void) {     char arr[] = {'h','e','l','l','o'};     printf("%s\n",arr);//災(zāi)難!,可能會(huì)崩潰     return 0; }

代碼6

沒(méi)啥用,還會(huì)core dump的超短代碼,可以編譯運(yùn)行:

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; }

輸出結(jié)果:

end

原因也很簡(jiǎn)單,sizeof(arr)/sizeof(int)的結(jié)果是unsigend, int類型的i  和unsigned比較,被轉(zhuǎn)換為一個(gè)很大的unsigned數(shù),所以for循環(huán)的條件不滿足。

代碼8

#include<stdio.h> test() {     long b = 12345678987654321;     return b; } int main(void) {     long a = test();     printf("%ld\n",a);     return 0; }

輸出結(jié)果:

1653732529

代碼9

#include<stdio.h> int main(void) {     float a = 3;     int b = 2;     printf("%d\n",a/2);     return 0; }

輸出結(jié)果:

1199094392

原因:浮點(diǎn)數(shù)在計(jì)算機(jī)中按照IEEE754標(biāo)準(zhǔn)存儲(chǔ)

到此,關(guān)于“C語(yǔ)言迷惑行為有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI