| Открытый урок |
| 1 | #include <iostream> using namespace std; void increase(int* const array, const int NUM_ELEMENTS); void display(const int* const array, const int NUM_ELEMENTS); int main() { cout << "Creating an array of high scores."; const int NUM_SCORES = 3; int highScores[NUM_SCORES] = {5000, 3500, 2700}; cout << "Displaying scores using array name as a constant pointer."; cout << *highScores << endl; cout << *(highScores + 1) << endl; cout << *(highScores + 2) << ""; |
Комментарии