The user types a string, possibly separated by tabs, spaces and "enters" (CRs). I need to receive all of it; the problem is that gets() function stops the scan when the user presses the "Enter" key. Is there another way to do it? I cannot use any other function except for scanf and gets.
feedback
|
|
First of all: It is not possible to write a correct program using Consider | |||||||||||||||||
feedback
|
|
Use a loop. Keep | |||||||||
feedback
|
|
Why do you need the "Enter"? You know by the fact that gets returned that a carriage return (or end of file) was detected. | |||
|
feedback
|