Creative Commons License Foxbond's Repo

/** (c) 2012 Michał (Foxbond) Chraniuk */
#include <iostream>
using namespace std;
int main()
{
    int tab[]={1,2,30,4,5,6,7,8,9,10};
    int *wsk= tab;   

		for (int i=0;i<10;i++){
			
			cout << *wsk << "\n";
			wsk++;
		}
		system("PAUSE");
}

> Back