將一個正整數轉換成二進制數字的字串*/ void i2s(unsigned int n, char s[]) { int i=0, j, c; do s[i++] = (n & 1) + '0'; ... 注意,此函式並不理會正負號的問題。
確定! 回上一頁