How gets() function works? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How gets() function works?

1st Mar 2020, 1:31 PM
Sakib Khan
Sakib Khan - avatar
2 Answers
+ 1
The C library function char *gets(char *str) reads a line from stdin and stores it into the string pointed to by str
1st Mar 2020, 2:27 PM
Arsenic
Arsenic - avatar
+ 1
Also, in general you shouldn't be using it. Use fgets, or, if available, gets_s.
1st Mar 2020, 5:59 PM
Vlad Serbu
Vlad Serbu - avatar