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

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

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


code

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

發表迴響

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