char src[] = "The worst thing to eat before you sleep";
    char dst[40];
    int i,j;

    printf("원본 문자열 = %s \n", src);
   
    for (j = 0, i = 0; i<=39    ; j++, i--)

        dst[j] = src[39-i];
       
    dst[i] = NULL;

    printf("복사된 문자열= %s \n", dst);


에서 디버깅은 되거든? 근데 시발 출력이 안돼..형들 하찮은 새끼좀 도와줘..