gets.c
资源名称:C数据结构课程设计.rar [点击查看]
上传用户:janny_wxd
上传日期:2010-02-03
资源大小:261k
文件大小:0k
源码类别:
控制台编程
开发平台:
C/C++
- #include <stdio.h>
- #include <string.h>
- void main( void )
- {
- char line[81];
- printf( "Input a string: " );
- scanf("%s",line);
- puts(line);
- //gets( line );
- printf( "The lengeth of the line is: %dn", strlen(line));
- }