Which is not a valid declaration of an array of strings to store names? a) std::string names[5]; O b) const int SIZE = 5
Posted: Sun May 15, 2022 8:40 am
Which is not a valid declaration of an array of strings to store names? a) std::string names[5]; O b) const int SIZE = 5; std::string names[SIZE]: Oc) int SIZE = 5; std::string names[SIZE); O d) #define SIZE 5 std::string names[SIZE]: