15 lines
246 B
C++
15 lines
246 B
C++
#include <iostream>
|
|
using namespace std;
|
|
|
|
int main() {
|
|
// int length;
|
|
// cin >> length;
|
|
int array1[3] = {3, 10, 40};
|
|
cout << array1 << endl;
|
|
cout << *array1 << endl;
|
|
cout << array1 << endl;
|
|
|
|
|
|
|
|
return 0;
|
|
} |