Posted on 2008-09-19 13:32
Prayer 阅读(5544)
评论(0) 编辑 收藏 引用 所属分类:
C/C++
http://community.csdn.net/Expert/TopicView3.asp?id=5719288
char a[10];
fgets(a,sizeof(a),stdin);
if(strlen(a)!=sizeof(a)-1) //需要考虑要读的数据行太长没读完的情况.
a[strlen(a)-1]='\0';
char line[1024] = "";
fgets(line, 1024, stdin);
if (line[strlen(line)-1] == '\n')
line[strlen(line)-1] = '\0';