91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 2.75KB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發布日期: 2021-02-21
  • 標簽:

資源簡介

C++實戰源碼-輸出二維數組的有關值(入門級實例104).zip

資源截圖

代碼片段和文件信息

//?Array.cpp?:?Defines?the?entry?point?for?the?console?application.
//

#include?“stdafx.h“
#include?

int?main()
{
????int?a[3][4]={123456789101112};??//聲明數組
????printf(“%d%d\n“a*a);??????????????//輸出第0行首地址和0行0列元素地址
????printf(“%d%d\n“a[0]*(a+0));????????//輸出0行0列地址
????printf(“%d%d\n“&a[0]&a[0][0]);?????//0行首地址和0行0列地址
????printf(“%d%d\n“a[1]a+1);??????????//輸出1行0列地址和1行首地址
????printf(“%d%d\n“&a[1][0]*(a+1)+0);???//輸出1行0列地址
????printf(“%d%d\n“a[1][1]*(*(a+1)+1));??//輸出1行1列元素值
????getch();
return?0;
}



?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????623??2010-10-20?09:38??Array\Array.cpp
?????文件????????4524??2010-10-20?09:36??Array\Array.dsp
?????文件?????????535??2010-10-20?09:36??Array\Array.dsw
?????文件?????????292??2010-10-20?09:36??Array\StdAfx.cpp
?????文件?????????769??2010-10-20?09:36??Array\StdAfx.h

評論

共有 條評論