Difference between Dev C ++ and Visual C ++

What are the differences between Dev C ++ and Visual C ++?

  • Dev C ++ uses gcc, Visual C ++ uses its own compiler.
  • Any others?

Correct me if I am wrong.

I tried to compile a program written in Visual C ++ with Dev C ++, and this did not work.

Does anyone have any ideas why?

+3
source share
4 answers

You need to show us the code, we can not offer any specific recommendations, without knowing more details about what you are doing. You mentioned one of the differences between MS Visual C ++ and Dev C ++ (and his cousins ​​also use GCC under covers). For my suggestions, see the last two paragraphs.

++ , , - , , Microsoft, Dev ++. , , Dev ++, MFC Win32 API.

Dev ++ Microsoft, . Visual ++ ( ), , , , , MS.

, , "--", Visual ++ Express. Microsoft IDE , , , - , , , : -).

VS2010 Professional , MS , , , , , :-)

, Dev ++, Code:: Blocks, Eclipse CDT , , . , Microsoft, , . Eclipse , Java , , , , Code:: Blocks for ++. , .

, " ", , - , .

+2

Code:: Blocks. V++ 6.0, , , V++ IDE.

- / , .

0

Visual ++ , , stdafx.h( STANDARD Application Framework eXtensions). , , . Visual ++ Windows. IDE.

, , . , - , . , , .

0

Visual ++ - Microsoft. ++ Windows [MFC, COM, Win32]. Windows , Visual Studio.

Dev ++, ..

The reason your application has not compiled with Dev C ++ is because libraries cannot be configured correctly with Dev C ++.

0
source

Source: https://habr.com/ru/post/1703227/


All Articles