home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day02 / ex02-05.c < prev    next >
C/C++ Source or Header  |  2002-04-07  |  302b  |  17 lines

  1. /* ex02-05.c */
  2. #include <stdio.h>
  3. #include <string.h>
  4. int main(void)
  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!",
  12.                       strlen( buffer ));
  13.  
  14.     return 0;
  15. }
  16.  
  17.