자료구조 (2) 썸네일형 리스트형 자료구조 ( 실습 2 ) #define _CRT_SECURE_NO_WARNINGS #include #include #define MAX_SIZE 100 void main() { char name[MAX_SIZE]; char s1 [MAX_SIZE]; /* 문자열 입력 *Parameter 1 : 티켓 변수 *Parameter 2 : 버퍼 사이즈, 배열 사이즈 */ printf("이름 입력>>"); gets(name); printf("%s\n", name); strcpy(name, "Hello"); strcpy(s1, "World"); strcat(name, s1); printf("%s\n", name); strncpy(s1, name, 2); s1[2] = '\n'; printf("%s\n", s1); } #define _CRT_.. 자료구조 ( 실습 1 ) #include #include #define COMPARE(x, y) (((x) < (y)) ? -1 : ((x) == (y)) ? 0 : 1) #define MAX_TERMS 100 typedef struct { float coef; int expon; } polynomial; polynomial terms[MAX_TERMS]; int avail = 0; void padd(int starta, int finisha, int startb, int finishb, int* startd, int* finishd); void attach(float coefficient, int exponent); void main() { int startA = 0; int finishA = 0; int startB = 0;.. 이전 1 다음