6 lines
84 B
C
6 lines
84 B
C
#include <stdio.h>
|
|
|
|
void hello(char name[])
|
|
{
|
|
printf ("Hello, %s!\n", name);
|
|
}
|