RosettaCodeData/Task/Gotchas/C/gotchas-13.c
2025-02-27 18:35:13 -05:00

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");
}