#include<stdio.h>
void Hello(char a[])
{
printf("%s n", a);
return;
}
void Good(char b[])
{
printf("%s n", b);
return;
}
void Morning(char c[])
{
printf("%s n", c);
return;
}
int main(void)
{
Hello("hello");
Good("Good");
Morning("Morning");
return 0;
}
c한지 좀 되서 이게 맞는지는 모르겠는데 아니면 바꿔서 해보고 해보세요