#include int main() { char buffer[80]; std::cout << "Enter the string: "; std::cin >> buffer; std::cout << "Here's the buffer: " << buffer << std::endl; return 0; } Enter the string: stringHere's the buffer: string