1.degree of figurative distance or separation;
just one remove from madness or it imitates at many removes a Shakespearean tragedy;
1.remove something concrete, as by lifting, pushing, taking off, etc. or remove something abstract;
remove a threat
2.remove from a position or an office
3.dispose of;
Get rid of these old shoes!
4.cause to leave;
The teacher took the children out of the classroom
5.shift the position or location of, as for business, legal, educational, or military purposes;
He removed his children to the countryside
6.go away or leave;
He absented himself
7.kill intentionally and with premeditation;
The mafia boss ordered his enemies murdered
8.get rid of something abstract;
The death of her mother removed the last obstacle to their marriage
函数名: remove 功 能: 删除一个文件 用 法: int remove(char *filename); 程序例: #include <stdio.h> int main(void) { char file[80]; /* prompt for file name to delete */ printf("File to delete: "); gets(file); /* delete the file */ if (remove(file) == 0) printf("Removed %s.\n",file); else perror("remove"); return 0; } 函数名: rename 功 能: 重命名文件 用 法: i