헤더.h

-------------------

#ifndef h

#define h

#include <stdio.h>

class test

{

public:

void print()

{

printf("정상");

}

};

test tes;

#endif

----------------------------------

소스.cpp

---------------------------------

#include <stdio.h>

#include "헤더.h"

int main()

{

tes.print();

return 0;

}

----------------------------


되여