#include #include #include const size_t MAX_SIZE = 256; const char* SEPARATORS = " \r\n,.!?:;()-"; int main() { char text[MAX_SIZE] = {0}; std::cout << "Enter the line: "; fgets(text, MAX_SIZE, stdin); return 0; }