#include <stdio.h>
struct data
{
int year;
char month;
char day;
}
struct books {
char *title;
char *author;
struct date pubday;
}
book1;
book1.title = "Data structures"
book1.pubday.year = 2009;
#include <stdio.h>
struct data
{
int year;
char month;
char day;
}
struct books {
char *title;
char *author;
struct date pubday;
}
book1;
book1.title = "Data structures"
book1.pubday.year = 2009;
비쥬얼스튜디오 새프로젝트->win32콘솔응용프로그램, 빈프로젝트->소스파일에 c파일추가시켜서 코드적고 컨트롤에프오
그건 저도 아는데 에러나서 ...