www.pudn.com > c.rar > ex02-05.c


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