"안녕하세요." 를 출력하는 함수를 작성하고 아래와 같이 출력하는 프로그램을 작성하시오. #include void hello() { printf("안녕하세요.\n"); } int main() { hello(); printf("제이름은 C언어 입니다.\n"); hello(); printf("정말 반갑습니다.\n"); hello(); printf("저는 이곳에서 사용되는 함수 입니다."); } 두 정수를 입력 받아 두 정수의 +, -, * 의 결과를 반환하는 함수 3개를 만들어 결과를 출력하는 프로그램을 작성하시오. #include int plus(int x, int y) { return x+y; } int minus(int x, int y) { return x-y; } int mul(int x, int y..