![]() |
VOOZH | about |
For example see the following code:
Here the input will be provided by the user and output will be as follows:
Input: Geeks for Geeks Output: Geeks Input: Computer science Output: Computer
Here input will be provided by user as follows
Input: Geeks for Geeks Output: Geeks for Geeks Input: Computer science Output: Computer science
The main difference between them is:
The difference can be shown in tabular form as follows:
| scanf() | gets() |
|---|---|
| when scanf() is used to read string input it stops reading when it encounters whitespace, newline or End Of File | when gets() is used to read input it stops reading input when it encounters newline or End Of File. It does not stop reading the input on encountering whitespace as it considers whitespace as a string. |
| It is used to read input of any datatype | It is used only for string input. |
|
Its syntax is -: scanf(const char *format, ...) |
Its syntax is -: char *gets(char *str) |
| It is fast to take input. | It takes one parameter that is the pointer to an array of chars |
| Format specifiers is used inside scanf to take input. | Its return value is str on success else NULL. |
Actually we can use scanf() to read entire string. For example we can use %[^\n]s inside scanf() to read entire string.
The above code reads the string until it encounters newline. Examples:
Input: Geeks for Geeks Output: Geeks for Geeks Input: Computer science Output: Computer science