Which of the following input function cannot be used to input multiword string?
a) getch()
b) gets ()
c) scanf()
d) None of these
Answers
Answered by
25
Answer:
c scan is the answer of your questions ‼️.
Answered by
0
The correct answer is option (d) None of these.
- getch() is used to input the characters and provide acceptance, it provides the reading of the characters directly from the keyboard. It reads the character from the terminal and returns it as an integer.
- scanf() function is used to read input data from the console. It reads the formatted data from stdin (standard input).
- gets () reads characters from the standard input and stores them as a C string.
- All these are used to input multiword strings so the answer is none of these.
#SPJ3
Similar questions