在turbo c++中将字符串的一部分转换为整数

Converting a part of string to an integer in turbo c++

我想找到一种方法将字符串中的数字转换为整数。 我可以使用 isnum 函数在字符串中找到数字,但问题是 如何使它成为整数

我想你需要的是atoi功能。

这是来自 cplusplus.com 的代码示例:

/* atoi example */
#include <stdio.h>      /* printf, fgets */
#include <stdlib.h>     /* atoi */

int main ()
{
  int i;
  char buffer[256];
  printf ("Enter a number: ");
  fgets (buffer, 256, stdin);
  i = atoi (buffer);
  printf ("The value entered is %d. Its double is %d.\n",i,i*2);
  return 0;
}