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 >
Wrap
C/C++ Source or Header
|
2002-04-07
|
302b
|
17 lines
/* ex02-05.c */
#include <stdio.h>
#include <string.h>
int main(void)
{
char buffer[256];
printf( "Enter your name and press <Enter>:\n");
gets( buffer );
printf( "\nYour name has %d characters and spaces!",
strlen( buffer ));
return 0;
}