0
yyrgdro999
The code includes the standard input and output library, printf(), and the scanf() function. The program prints "Name?" and then reads in a character and prints it followed by "hello" for the input character.
0 Comments
#include <stdio.h> int main() { char name; printf("Name?"); scanf("%c", &name); printf("hello %c ", name); }