Wednesday 19 March 2014

C Program for Input of strings containing spaces

/* Input of strings containing spaces */
main( )
{
char  name[25] ;
printf ( "Enter your full name " ) ;
gets ( name ) ;
puts ( "Hello!" ) ;
puts ( name ) ;
}

No comments:

Post a Comment