If you mean you want them to name each block of information (that you store in a struct) so they can find it later, you can use a map to do it:
struct blockOfInfo oldInfo, newInfo;
std:map<string, struct blockOfInfo> info;
info["name"] = oldInfo;
newInfo = info["name"];
Cprogramming.com has a
good tutorial on maps.