(I am very new to C by btw) My current code
#include <stdio.h>
char main()
{
char x;
printf("Please enter your first initial:",x);
scanf("%c",&x);
char string[100];
char y;
printf("Please enter your last name:",y);
scanf("%s",&y);
printf("Hello I am %c %s. Nice to meet you.",x,y);
return 0;
}