#include #define STR_MAX 20 main() { char name[STR_MAX]; printf("name: "); scanf("%s", name); printf("hello, %s. how are you?\n"); exit(0); }