摘要: 摘自:http://www.52coder.net/archives/120.htmlC/C++ code1、 char test[] = {0x01,0x02,0x03}; int a = strlen(test); int b = sizeof(test);2、 char test[] = {0x01,0x00,0x03}; int a = strlen(test); int b = sizeof(test);3、 char test[20] = {0x01,0x02,0x03}; int a = strlen(test); int b = sizeof(test);4、 char tes 阅读全文
posted @ 2012-10-15 22:15 emmac 阅读(230) 评论(0) 推荐(0)