blob: ac96a75df02e91742eee61f1d8b6d3640bfaada5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <iostream>
#include <vector>
/*
*
* 3.29
*
*
*/
using std::string;
using std::cout;
using std::cin;
using std::cerr;
using std::clog;
using std::endl;
using std::vector;
int main() {
/*
- We need to know the size of an array when we create it
- We cannot initialize an array with another array and we cannot assign an array to another
- We cannot increase an array's size like we can with vectors.
- character arrays need space for the null character
*/
return 0;
}
|