#include int main() { char prompt[] = "Please enter your first name:"; char gratis[] = "Thanks!"; char first[25]; printf(prompt); gets(first); puts(gratis); printf("Pleased to meet you, %s!\n",first); return(0); }