7 lines
192 B
C
7 lines
192 B
C
void
|
|
say_hello(const char *name) /* assume name is something the user entered */
|
|
{
|
|
printf("hello ");
|
|
printf(name); /* the name entered could be "%s" or "%n" or something */
|
|
printf("\n");
|
|
}
|