CJCoding With Joseph
15per day

Read Full Line with getline

Write a program that reads a full line of text (including spaces) from the user using getline and prints:

You said: [text]

Use getline(cin, variableName) to read the entire line including spaces.

Expected Output:

You said: Hello World
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
Hello World\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.