RosettaCodeData/Task/Gotchas/C/gotchas-13.c

8 lines
192 B
C
Raw Permalink Normal View History

2025-02-27 18:35:13 -05:00
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");
}