Monday, December 10, 2007

How to use Get( ) and Put( )

How to use Get( ) and Put( )

To use Get( ) and Put( )

#include

main( )

{ char name[15];

puts("Please Your name here ..... ");

gets(name);

puts("Hello");

puts(name);

puts("How Are You ? ");

return 0;

}

Result :


No comments: