This question already has an answer here:
- Disable warning messages in GCC through header files? 10 answers
everytime i try to input my string using gets()
function, my compiler gives me warning like shown below. how to get rid of this. what am i doing wrong?
test.c:27:2: warning: ‘gets’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
gets(temp);
^