// Wskaźnik_przy_pracy_z_tablicą.cpp : Defines the entry point for the console application. // #include using namespace std; int main() { int *wi; double *wd; int tablint[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; double tabldouble[10]; wd = &tabldouble[0]; for (int i = 0; 1 < 10; i++) { *(wd++) = i / 10.0; } cout << "Tresc tablic na poczatku\n"; wi = tablint; wd = tabldouble; for (int k = 0; k < 10; k++) { cout << k << ") \t" << *wi << "\t\t\t\t" << *wd << endl; wi++; wd++; } wi = &tablint[5]; wd = tabldouble + 2; for (int m = 0; m < 4; m++) { *(wi++) = -222; *(wd++) = -777.5; } cout << "tresc tablic po wstawieniu nowych wartosci"; wi = tablint; wd = tabldouble; for (int p = 0; p < 10; p++) { cout << "tablint [" << p << "] = " << *(wi++) << " \t\ttabldouble[" << p << "] = " << *(wd++) << endl; } cin.get(); cin.get(); return 0; }