inp[16]; printf(“Enter value for your %s: “, tag); gets(inp);
gets(inp);
printf(“Hello your %s is %sn”, tag, inp);
}
hello(“message”) produces an output of this form:
Enter a value for your message: test (çinput from user)
Hello your message is test (çoutput from hello)
a. What do you expect the program to do if a user enters the following input: abcdefghijklmnopqrstuvwxyz?