2008年2月19日 星期二

一本新的 簡體版的Linux雜誌

Linux雜誌《開源》電子雜誌創刊號總第1期200801

下載網頁

開源雜誌的介紹內容
轉貼
http://www.linuxdiyf.com/viewarticle.php?id=76902

他們的遠景
一本持續的、關注開源的、永遠免費的電子雜誌,這是我們的願景,也是我們的奮鬥目標。
很不錯

透過Facebook分享

2008年2月18日 星期一

sizeof vs strlen

char cname[50] = "";

int i = strlen(cname);
int j = sizeof(cname);


Result:

i = 0;
j = 50;

strlen: 計算目前char的長度(Get the length of a string.)
sizeof: The sizeof operator yields the size of its operand with respect to the size of type char

透過Facebook分享