Dev C++ compilation error, permission denied

前端 未结 7 635
南笙
南笙 2021-01-18 08:22

I want to compile a code program using dev c++ compiler but my compiler didn\'t compile my code.The program consist of two files one is header and other is implementation .c

7条回答
  •  不要未来只要你来
    2021-01-18 08:38

    Windows 7 does not let you write directly to the root of c:\ (among other locations) unless from within a process running with administrator privileges.

    The simplest workaround for you is to move your project from c:\ to another directory -- for example, c:\projects will work.

提交回复
热议问题