I can't find any information on whether or not you can set default values for arrays created via a class and/or any syntax for arrays made via classes beyond mere creation. Please help.
// strings
#include <string>
//normal setup
#include <iostream>
#include <string>
using namespace std;
// multi array setup
class recordtype {
public:
// array vars
string namef;
string namel;
char size;
};
// array
recordtype listof[11];