C語言中將字符串轉換爲數字的方法

C語言提供了幾個標準庫函數,能夠將字符串轉換爲任意類型(整型、長整型、浮點型等)的數字。如下是用atoi()函數將字符串轉換爲整數的一個例子: # include <stdio. h> # include <stdlib. h> void main (void) ; void main (void) {     int num;     char * str = "100";     num =
相關文章
相關標籤/搜索