hello
i want to know ,why the gets() show an warning in gcc compilier,and how to remove the warning
i want to know ,why the gets() show an warning in gcc compilier,and how to remove the warning
char s [256]; gets(s);
char array1[] = "12345"; char array2[] = "67890"; gets(array1);
Comment