2010年11月29日 星期一

C超新手常犯的錯誤

通常strncpy(str1, str2, 8);
並不會在str1[8]自動加上string結尾,
所以請自行加上,str1[8] = NULL;