1. 程式人生 > >求字串長度

求字串長度

雖然函式庫裡已經有這樣的一個函數了,但還是可以自己編寫一下

/*計算一個字串的長度*/
#include <stdlib.h>
size_t strlen( char * string )//size_t是標準C庫中定義的,即為unsigned int
{
	int len = 0;
	while( *string++ != '\0' )//先取值再位置加1,直到遇到NULL才停止計數
		len += 1;
	return len;
}