Files
CS3210/Lecture/Week2/main2.cpp
2022-04-04 15:41:31 -05:00

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;
}