Tagged Questions

3
votes
5answers
87 views

c : gets() and fputs() are dangerous functions?

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 ...
2
votes
7answers
4k views

Disable warning messages in GCC through header files?

I am using the function gets() in my C code. My code is working fine but I am getting a warning message (.text+0xe6): warning: the `gets' function is dangerous and should not be used. I want this ...
0
votes
5answers
168 views

gets() problem in C

I wrote the following code: #include <stdio.h> #include <stdlib.h> #include <string.h> #define SIZE 128 int main () { char mychar , string [SIZE]; int i; int const ...