Posts by Adriano Oliveira • 1 point
1 post
-
0
votes1
answer98
viewsQ: char and constructors in c++
I need a constructor for a class that has char vectors as attributes, like this one: class Anthem { private: int Id; char Name[50]; char Country[50]; int Year; char Composer[30]; char Historic[200];…