95.7k views
4 votes
The _________ causes a program to wait until information is typed at the keyboard and the enter key is pressed.

1 Answer

4 votes
All console programs have a way to prompt for input.

For C#, the answer is Console.ReadLine().
For C, the answer is a.o. fgets()
For C++, the answer could be cin >>
... and so on...

Not sure what answer you need here.
User Oleg
by
7.6k points