Public/tip & tech
보통 이렇게 했었다
strncpy(d, s, len);
d[len]=0;
그런데 아래와 같이 하면 한줄에 가능하다. 오호~!
strncpy(d, s, len)[len] = 0;