permission denied, ld returned 1 exit status in dev c++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • maha94
    New Member
    • Jan 2013
    • 1

    permission denied, ld returned 1 exit status in dev c++

    can anyone tel me why am getting permission denied ,ld returned 1 exit status in dev c++??? actually when i compiled that program first time it was compiled and run also. but repeatedly i changed sme things and wen i was compilin again and again i got this problem. i read the FAQ before posting my question. but cant get crct answer. my platform is windows7.i compiled many programs in this dev c++. so its workin properly. but am a begineer. so ppl plz explain me and help me out frm this problem.
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Most likely you are trying to access memory that is not part of the process running your program. This could be using an uninitialized pointer or, if you are doing pointer arithmetic, getting a result outside your process's adress space (like running off the end of an array).

    Comment

    • donbock
      Recognized Expert Top Contributor
      • Mar 2008
      • 2427

      #3
      Are you getting this error when you build your program or when you execute your program?

      Comment

      Working...