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 >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-16
|
257 b
|
15 lines
/* EX2-5.C */
#include <stdio.h>
main()
{
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;
}