C++中的atoi 函数简介

  #include "stdafx.h"

  #include

  #include "windows.h"

  #pragma warning(disable: 4996)

  int _tmain(int argc, _TCHAR* argv[])

  {

  printf("atoi函数计算结果 %d

  ", atoi("13456"));

  printf("atoi函数计算结果 %d

  ", atoi("0"));

  printf("atoi函数计算结果 %d

  ", atoi("789"));

  printf("atoi函数计算结果 %d

  ", atoi("123.123")); //默认转为整数

  printf("atoi函数计算结果 %d

  ", atoi("-9"));

  system("pause");

  return 0;

  }