/* EX2-5.C */ #include #include main() { char buffer[256]; printf( "Enter your name and press :\n"); gets( buffer ); printf( "\nYour name has %d characters and spaces!\n", strlen( buffer )); return 0; }