본문 바로가기
프로그램/C언어 1000제

C언어 129제] C언어 콘서트 CHAPTER 14 Programming 3 p547

by 건티 2022. 2. 11.
728x90

출처 : 반크_세계유산 석굴암

 

참고풀이] Visual Studio 2019에서 작업함.

hello.h)

#ifdef HELLO_h
#define HELLO_H
void hello(char* name);
#endif

 

hello.c)

#include <stdio.h>
#include "hello.h"

void hello(char* name)
{
   printf("안녕 %s\n", name);
}

 

main()가 있는 파일)

#include <stdio.h>
#include "hello.h"

int main()
{
   hello("철수");
   return 0;
}

 

 

참고풀이 결과]

 

 

 

대한민국의 아름다운 영토, 독도의 여름

 

반응형

댓글