Given the following: void Foo(){ const int elementCount = 3;…
Given the following: void Foo(){ const int elementCount = 3; string* strings = new string[elementCount]; int numbers[elementCount]; for (int i = 0; i < elementCount; i++) { numbers[i] = rand() % 100; cin >> strings[i]; } delete[] strings;} How many stack variables are created in this function?
Read Details