发布时间:2013-10-02 23:18:02
网上看到的,转载过来。coding的时候要格外注意原文:http://blog.csdn.net/eroswang/article/details/6076987strncpy的正确用法:strncpy(dest, src, sizeof(dest));dest[sizeof(dest)-1] = ‘/0’;snprintf的正确用法:snprintf(dest, sizeof(dest), "%s", src);strncpy的问题:.........【阅读全文】