#include <stdio.h> void strcpy1(char *s, char *t) { int i=0, j=0; // i,j 두개를 사용하는 편이 훨씬 코드가 깔끔합니다. while((s[i++]=t[j++])!=' '); s[i]=0; // 문자열의 끝에는 널문자(0)가 들어가야 합니다. } void strcpy2(char *s, char *t) { while((*s++=*t++)!=' '); *s=0; } int main() { char source[100]="ThisLineIsVeryLong this line is ve..