2013年11月29日 星期五

[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;
}


 


沒有留言:

張貼留言