2015-11-08 58 views

回答

0

任何字符串中的最後一個字符爲空(\0)字符。您可以繼續閱讀字符串,直到此。

下面是一個簡單的wordcounting程序使用此:

char string[] = "Hello, World!"; 
int count = 0; 
int i = 0; 

while(1) { 
    if(string[i++] != '\0') { 
     count++; 
    } 
} 

printf("Letter count: %d", count); 
+0

that's不是exaclty我的意思是......我必須讀取用戶給出的未知數量的字符串 – Alkab

相關問題