Firstly, you aren't initialising any of the values of the buffers. Secondly don't use naked news, more often than not you'll end up with either really long, hateful code or memory leaks. Use RAII (google it). Also, why initialise buffers[1] not buffers[0]?
This entirely depends on how what exactly you're trying to do. For example pointers to arrays is very weird, so either you'd use a string, or a vector. But for initialising buffer (not sure what you're doing with object) you should do something like this:
1 2 3 4 5 6 7 8 9 10 11
#include <iostream>
#include <memory>
#include <string>
int main()
{
std::unique_ptr<std::string> buffer (new std::string);
*buffer = "Whatever you want it to";
std::cout<<buffer[0]<<std::endl;
return 0;
}