You probably don't really need to use pointers.
Code:
MyClass test[10]; // Declare 10 MyClass objects, each constructed with the default constructor.

test[0].add_info("foo");  
test[1].add_info("bar");