Dev C++ Avast Problem

  1. Avast Problems With Windows 10
  2. Avast Update Problem

Jun 05, 2009  dev-c Won't run any programs at all. Discussion in 'General Programming Support' started by Samael88, May 2, 2009. Page 1 of 2 1 2 Next May 2, 2009 #1. Samael88 Evil. There does not seem to be any problems with dev, I think that I have checked all the settings for dev. Hot topic: Avast continues to support Windows 7 operating system Installation & Activation Download, install, and activate your product. Change your device type. Avast Premium Security (formerly Premier) Avast Internet Security. Avast Pro Antivirus. Avast Free Antivirus. Avast Cleanup Premium. As quite a few people will tell you system is evil, don't use it. Well, it's not evil but can present a security compromise. This is why Avast will complain. I would advise not using system unless you really know what you're doing.

  1. The culprit is Avast DeepScreen. From Avast: 'The DeepScreen Technology allows Avast to make real-time decisions when an unknown file is executed'. In my case Matlab was blocked, as were some other applications. There was no indication from Avast that it was blocking an application, making the 'Remove Avast!' Comment above quite appropriate.
  2. Avast works like most other free antivirus software, working constantly in the background and informing you whether something dubious turns up on your computer during a browsing session.
  3. Having problem with compiler of Dev-C 4.9.9.2 in Windows 8 Problem with the complier of Dev C in windows 8. I am not able to install Dev C in my Pc warning is that windows not specified device path or file, you may not have appropriate permission to access the item.! Please help me. Reply Delete.
  4. DEV-C is a fully-featured integrated development environment (IDE) for creating, debugging and creating applications written in a popular C programming language. Even though tools for the development of C software have undergone countless upgrades over the years, a large number of developers located all around the world have expressed a wish to continue using DEV-C.

Hi!
I am using Dev-C++ and when I am trying to compile a program in it, it is showing many errors. All the settings seems to be right. Can I compile a program including header files like conio.h and iostream.h and using namespace std in Dev-C++? If not please suggest a good compiler in which I can do a program containing the header files mentioned above. I tried doing the same program in turbo C++ and microsoft visual studio 2010 express and it is working properly. If this problem in Dev-C++ is due to any settings that has to be done, please tell. I have installed Dev-C++ correctly.

Someone, please help me out!:confused:

  • 5 Contributors
  • forum 13 Replies
  • 2,031 Views
  • 2 Days Discussion Span
  • commentLatest Postby Stefano MtangooLatest Post

Recommended Answers

No wonder you're confused.
[QUOTE=confused_one;]
I am using Dev-C++ and when I am trying to compile a program in it, it is showing many errors. All the settings seems to be right. Can I compile a program including header files like conio.h and iostream.h and using namespace std in Dev-C++? …

Jump to Post

LOL! @WaltP: Pretty good timing for this thread! Don't you think?

Yet another example of 'I compile this with DevC++ and it doesn't work, but it works with other IDEs like ..'.

@OP: I agree with both posters. Stick to one generation of C++ code, that is, the current standard, …

Jump to Post

All 13 Replies

WaltP2,905

No wonder you're confused.

I am using Dev-C++ and when I am trying to compile a program in it, it is showing many errors. All the settings seems to be right. Can I compile a program including header files like conio.h and iostream.h and using namespace std in Dev-C++?

You are using 3 different eras of programming

  • 1980's - conio.h from non-Standard C programming. Suggestion - remove it and all functions used from it.
  • Pre-standard C++ using iostream.h -- again old and substandard. Upgrade to iostream, no extension.
  • namespace std for use with today's standard headers with no extension.

Avast Problems With Windows 10

Decide what era you want to compile and fix the code to that standard.

Software

Avast Update Problem

confused_one commented: thank you sir for your suggestion+0