Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在C中将字符串转换为数字,反之亦然?我知道我可以在 C++ 中使用 iostream 并使用 atoi() 或 sprintf() 等。我想知道是否有一种方法可以在不使用流的情况下在 C 中实现这一点。我在这一点上看到的唯一解决方案是创建我自己的函数,除非有人知道已经存在且经过验证的解决方案。
基本上,是否有与 C++ 的 atoi() 和 sprintf() 等效的 C 语言?
这两个都是 C 函数:
atoi
stdlib.h
sprintf
stdio.h
由于这些都包含在 C 中,因此它们都不需要 C++ 流。