전공 공부/학교 수업
유닉스 3주차 연습
Jin Hak
2009. 9. 15. 12:02
message.c
void hello_print(int d)
{
printf("\n hello:%d",d)
}
sum.c
void hello_sum(int a,int b)
{
return (a+b);
}
hello.c
main()
{
hello_print(hello_sum(2,3));
}