Hi when I write make in the terminal I get this message. What is the problem with gets? Must I change something. Thanks for helping.
user@ubuntu:~/Desktop/Project$ make
gcc -g -ansi -pedantic -Wall -lm project.o -o project
project.o: In function `main':
project.c:(.text+0x2c8c): warning: the `gets' function is dangerous and should not be used.
void main(){
char File_Name[55] = { "\0" };
printf("Give Me File Name:\n");
gets(File_Name);
strcat(File_Name, ".as");
Read_From_File(File_Name);
printf("\n*******************************************\n");
free_malloc();
}