/*---------------------------------------------------------- Elizabeth Sklar MC140.0X 11 September 2000 This program asks the user to enter his/her name, and then prints "hello ". ----------------------------------------------------------*/ #include /*--------------------------------------------------------*/ /* main program */ /* */ /*--------------------------------------------------------*/ int main( void ) { char name[1024]; printf( "what is your name? " ); scanf( "%s", name ); printf ( "hello %s!\n",name ); getchar(); return 0; } /* end of main() */