#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
int a[5] = { 11, 22, 33, 44, 55 };
for (int i = 0; i < 5; i++)
cout << *(a+i)<<"\t";
_getch();
}
--------------------------------------------------------------------
or
#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
int a[5] = { 11, 22, 33, 44, 55 };
int *ptr;
ptr = a;
for (int i = 0; i < 5; i++)
cout << *(ptr++)<<"\t";
_getch();
}
0 التعليقات:
إرسال تعليق