揮発性のメモ2

http://d.hatena.ne.jp/iww/

2017-08-09から1日間の記事一覧

strncpy は文字列コピーじゃあない

C

Man page of STRCPY strncpyは文字列コピーと思ってはいけない。 名前にstrとかついてるだけのmemcpyの亜種、みたいに思わないとだめ。 void printbuf(int n){ int i; char buf[10]="@@@@@@@@@"; strncpy(buf,"hello",n); for(i=0;i<9;i++) printf("%02X ",b…