今天在写程序时遇到的一个问题

  #include <stdio.h>
  #include <string>
  using std::string;



  int main()
  {
      char str[STEL];
      while (scanf("%s", str) && strcmp(str, "end"))
      {
          printf("%s = %u\n", str, hash(str));
      }
      return 0;
  }

写完用g++编译,出现error: ‘strcmp’ was not declared in this scope

上网查找发现必须再加上#include <string.h>才能正确编译执行,即同时存在

#include <string.h>
#include <string>
using std::string;

也就是说strcmp不在C++标准库中,需要单独包含strcmp所在的头文件。

 

自己试了下

#include <cstring>
using namespace std;

也可以完成,即c的标准库中也包含这个函数

相关文章:

  • 2022-12-23
  • 2021-05-20
  • 2022-01-14
  • 2021-09-18
  • 2021-09-02
  • 2022-12-23
  • 2021-12-06
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案