i wrote this:



Code:
// sendinfo is a struct.

.
.
.
 printf(" Name:  ");
 gets(name);
 strcpy(sendinfo.name,name);
.
.
.
when i compile it, the compiler prints:
- warning: the `gets' function is dangerous and should not be used.

should i consider this? Why is it dangerous?
thx