无法运行包含 makemat.c 的 c 程序

无法运行包含 makemat.c 的 c 程序

在我的 Ubuntu 14.04 中,当我尝试编译包含以下行的程序时#包括“makemat.c”终端显示以下内容:

fatal error: /usr/include/makemat.c: Permission denied

有谁能够帮助我??

答案1

看来你没有Read文件许可/usr/include/makemat.c

使用检查您的权限

ls -l /usr/include/makemat.c

如果是这样,请使用以下方法更改其权限

sudo chmod 644 /usr/include/makemat.c

现在您可以将该文件包含在您的程序中。

相关内容