In the computer lab at school we wrote a program using fputs and the compiler returned an error gets is a dangerous function to use and a similar error for fputs

but at home when i type in this bit of code:

#include <stdio.h>
main()
{
    FILE *fp;
    char name[20];
    fp = fopen("name.txt","w");
    gets(name);

    fputs(name,fp);
    fclose(fp);
}

i get no errors what so ever. The one at school was similar to this one, just a bit lengthy and having more variables.
I use codeblocks at home and the default gcc provided with fedora at school.
Could it be a problem with the compiler?

link|improve this question
2  
Possible duplicate of stackoverflow.com/questions/2843073/… – Timothy Jones Jan 19 at 6:17
6  
Thats why home is better than school :) – Mahesh Jan 19 at 6:18
1  
The school's lab environment may have been configured so that GCC compiles at a higher warning level than your setup. In any case, it's best to heed the warning. – In silico Jan 19 at 6:20
1  
Twxo important rules of thumb when you are a newbie: trust the compiler (it is very rarely wrong!) and ask it to give all warnings (with gcc -Wall). Most real programmers improve their code till no warnings is given. – Basile Starynkevitch Jan 19 at 6:20
3  
@BasileStarynkevitch, I actually go further than that and use gcc -Wall -Wextra since I found out gcc was a pathological liar about the definition of "all" :-) – paxdiablo Jan 19 at 6:27
show 3 more comments
feedback

5 Answers

up vote 2 down vote accepted

Most probably compilers at your school are set to the highest warning level. So they show you the warnings.

And yeah the warning is correct. gets is certainly dangerous because it is an open invitation to Buffer overflow.So you should try to avoid that and use scanf() or fgets() instead.

But fputs is absolutely fine.fgets and fputs have no chance of buffer overflow because you have allocated sufficiently big buffer in the corresponding file which is file.txt in this case

link|improve this answer
feedback

With gets you need exactly know how many characters you will read and accordingly use a large enough buffer. If you use a buffer which is lesser than the contents of the file you read, you end up writing beyond the bounds of your allocated buffer and this results in an Undefined Behavior and an Invalid program.

Instead you should use fgets which allows you to specify how much data to read.

You don't get any errors because most likely your allocated buffer name is big enough to hold the contents of you file name.txt but if it was not then its a problem and hence the compiler issues the warning.

link|improve this answer
feedback

gets is certainly dangerous since there's no way to prevent buffer overflow.

For example, if your user entered 150 characters, that would almost certainly cause problems for your program. Use of scanf with an unbounded "%s" format specifier should also be avoided for input you have no control over.

However, the use of gets should not be an error since it complies with the standard. At most, it should be a warning (unless you, as the developer, configures something like "treat warnings as errors").

fputs is fine, not dangerous at all.

See here for a robust user input function, using fgets, which can be used to prevent buffer overflow.

link|improve this answer
feedback

It would just be the different settings of the different compilers. Maybe the compiler that Codeblocks uses isn't as verbose or has warnings turned off.

Regardless of the compiler they are dangerous functions to use as they have no checks for buffer overflow. Use fgets or fputs instead.

link|improve this answer
feedback

As for problems, there isn't any problem with any of the compilers. If you look at the link provided by Timothy Jones, you would understand why this warning is issued. As for different versions of compiler, compilers are configured differently to issue different levels of warning.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.