home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / ex2-5.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  257b  |  15 lines

  1.  /* EX2-5.C */
  2.  #include <stdio.h>
  3.  
  4.  main()
  5.  {
  6.      char buffer[256];
  7.  
  8.      printf( "Enter your name and press <Enter>:\n");
  9.      gets( buffer );
  10.  
  11.      printf( "\nYour name has %d characters and spaces!", strlen( buffer ));
  12.  
  13.      return 0;
  14.  }
  15.