[Linux C] 整數與字串(字元陣列)互轉範例

[Linux C] 整數與字串(字元陣列)互轉範例

[Linux C] 整數與字串(字元陣列)互轉範例

 

本篇要介紹 Linux C 中 整數與字串(字元陣列)互轉範例,歡迎有興趣的C/P同好,一起來C/P一下。

 

#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int n;
char buf[30];
char *str = "12345.67";
n = atoi(str);
printf("string = %s integer =%d\n", str, n);
sprintf(buf,"%d",n);
printf("string = %s integer =%d\n", buf, n);
return 0;
}

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *