Tagged Questions
8
votes
4answers
3k views
Why is the `gets' function is dangerous? Why should not be used?
When I try to compile C code that uses the gets function, I get a warning: warning: the gets function is dangerous and should not be used.
I remember this has to do something with stack protection ...
0
votes
2answers
171 views
How can I scan strings with multiple words multiple times in C [not C++]?
I have googled many times but I cannot find a concrete answer to my question/problem.
I know fgets() allows it, as well as gets(). But if i do it multiple times, there's always an error. Multiple ...