긁어서 복사해서 내셈

#include <string.h>
#include <stdlib.h>


typedef struct {
    int year;
    int month;
    int day;
} DATE;

typedef struct {
    char name[20];
    DATE birthday;
    int age;
    float height;

    float weight;
    float bmi;
    char bmi_status[12];
} PERSON;

int SetClient();
int PrtClient();

int main() {

    PERSON *pclient;
    int n;
    SetClient();

    PrtClient();
    return 0;
}


int SetClient()
{
    printf(\"professor\\n\");
}

int PrtClient()
{
    printf(\"give me F\\n\");
}



시간안에 꼭 내길 바래요 ^^