gcc:致命错误:regex.h:没有这样的文件或目录

时间:2015-06-08 22:10:28

标签: c regex gcc

对于我的C程序,我使用gcc

最终,我想写一个用正则表达式做事的程序。但是,现在,我的程序只输出Hello World

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <regex.h>

int main(void) {

    printf("Hello World\n", regex);

    return 0;
}

以下是我编写该程序的方法:

gcc -std=c99 -o helloWorld helloWorld.c

产生此错误:

fatal error: regex.h: No such file or directory

我是C新手。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:-4)

看看如果从regex.h中删除.h会发生什么情况