#include using namespace std; const int CAPACITY=100; // Create and return a char array of the given size, fill the array with // value 100 int * MakeArray (int size); int * MakeArrayCorrect (int size); int main() { int length; cout <<"How large is the array? "; cin >> length; int * a; a = MakeArray (length); cout <<"In main: array of length" << length <