我對這段自己寫的C代碼是徹底沒轍了,很難解釋的詭異行為 HE

來源:互聯網
上載者:User

本來是在複習軟考的時候,準備擴充一下,把數組名和指標徹底分清楚

結果自己寫的代碼的行為把自己徹底搞暈了...

Code:
  1. #include "stdio.h"   
  2. int fun1(int *a)   
  3. {   
  4.     
  5.  int* p=(int *)(&a+1);   
  6.  printf("%d/n",*a);   
  7.  printf("%d/n",a);   
  8.  printf("%d/n",&a);   
  9.  printf("%d/n",&a+1);   
  10.  printf("%d/n",p[-1]);   
  11.  return 0;   
  12. }   
  13. int fun2(int **a)   
  14. {   
  15.  int* p=(int *)(a+1);   
  16.  printf("%d/n",**a);   
  17.  printf("%d/n",*a);   
  18.  printf("%d/n",a);   
  19.  printf("%d/n",a+1);   
  20.  printf("%d/n",p[-1]);   
  21.  return 0;   
  22. }   
  23. int fun3(int *a)   
  24. {   
  25.     
  26.  int* p=(int *)(((int(*)[5] )(a))+1);   
  27.  printf("%d/n",*a);   
  28.  printf("%d/n",a);   
  29.  printf("%d/n",&a);   
  30.  printf("%d/n",&a+1);   
  31.  printf("%d/n",p[-1]);   
  32.  return 0;   
  33. }   
  34.   
  35. int main()   
  36. {   
  37.     int a[5]={1,2,3,4,5};   
  38.     int * p=(int*)(&a+1);   
  39.     printf("%d/n",*a);   
  40.     printf("%d/n",a);   
  41.     printf("%d/n",&a);   
  42.     printf("%d/n",&a+1);   
  43.     printf("%d/n",p[-1]);   
  44.     fun1(a);   
  45.     fun3(a);   
  46.     fun3(a);   
  47.     fun2(&a);   
  48.     return 0;   
  49. }   
  50.   

兩個fun3(a)的輸出不同... 

而且fun2根本不應該最後一個輸出為5

 而且要是函數按這樣順序執行   

    fun1(a);
    fun2(&a);
    fun3(a);

fun3就不工作!!! 汗...已經想不清楚了...大家幫幫忙

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.