gets.c
上传用户:janny_wxd
上传日期:2010-02-03
资源大小:261k
文件大小:0k
源码类别:

控制台编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <string.h>
  3. void main( void )
  4. {
  5.    char line[81];
  6.    printf( "Input a string: " );
  7.    scanf("%s",line);
  8.    puts(line);
  9.    //gets( line );
  10.    printf( "The lengeth of the line is: %dn", strlen(line));
  11. }