Thursday, March 16, 2006

Sample.c

this is the first version of Sample.c:

#include

main(){

char name[20];
printf("\n May I know your name ? ");
scanf("%s", name);
printf("\n Hello %s", name);

}

0 Comments:

Post a Comment

<< Home