123456789101112131415161718192021#include#includevoid main(){ char ss[10] = "God"; int a,b,c; char tt[100] = "God Howard's Blog"; a = strlen(ss); printf("%d 글자 입니다.\n", a); strcat(ss, "Haword"); printf("이름은 %s 입니다.\n", ss); strcpy(ss, tt); printf("%s\n", ss);}Colored by Color Scriptercs 알아보시기 편하게 하드코딩으로 코딩했습니다. 이번에 소개시켜드릴 함수는 총 3가지 strlen, strcpy, strcat 입니다. 다음글에선 더 짧게 gets, puts 에 대해 적고 마지막으로는..