程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> win編程實踐(4)[c++]

win編程實踐(4)[c++]

編輯:關於C++

//ConsoleApplication1.cpp : 定義控制台應用程序的入口點。

//

 

#include "stdafx.h"

#include

 

 

using std::cout;

using std::endl;

using std::cin;

 

 

本博客所有內容是原創,如果轉載請注明來源

http://blog.csdn.net/myhaspl/

 

 

int main()

{

char temp;

int x[2][4];

for (int i = 0; i < 2; i++) {

for (int j = 0; j < 4; j++) {

x[i][j] = i*10+j;

}

}

int *x1ptr = &x[0][0];

int (*x2ptr)[4] = x;

for (; x2ptr <= &x[1]; x2ptr++) {

for (int j = 0; j < 4; j++) {

cout << (*x2ptr)[j]<< " ";

}

cout << endl;

}

for (int i = 0; i < 2; i++) {

for (int j = 0; j < 4; j++) {

cout << *(*(x+i)+j) << " ";

}

cout << endl;

}

for (int i= 0; i < 2; i++) {

for (int j = 0; j < 4; j++) {

cout << *(x1ptr + i*4+ j) << " ";

}

cout << endl;

}

cin >> temp;

return 0;

}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved