C 오류 : 함수에 대한 정의되지 않은 참조이지만 정의되어 있습니다. 단순한 프로그램이지만이 컴파일러 오류가 계속 발생합니다. 컴파일러에 MinGW를 사용하고 있습니다. 다음은 헤더 파일 인 point.h입니다 . //type for a Cartesian point typedef struct { double x; double y; } Point; Point create(double x, double y); Point midpoint(Point p, Point q); 그리고 여기에 point.c가 있습니다 . //This is the implementation of the point type #include "point.h" int main() { return 0; } Point create(double ..