What is the best free c++ compiler for windows?



What is the best free c++ compiler for windows?..

Answer / Shikha Saxena

The best free C++ compiler for Windows is MinGW (Minimalist GNU for Windows), which provides a GNU-like environment for compiling, linking, and running C and C++ programs on Windows.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is dev c++ used for?

1 Answers  


What is class invariant in c++?

1 Answers  


What is else if syntax?

1 Answers  


What does it mean to declare a destructor as static?

1 Answers  


Explain about profiling?

1 Answers  


What is the difference between the indirection operator and the address of oper-ator?

1 Answers  


Must accepts "Maestro Cards" Tax for bike should be less than 15 Total number of lanes is more than 10 Must provides monthly pass Write a method: boolean isGoodTollBridge(String[] cardsAccepted, String[] tollTax, boolean hasMonthlyPass, int numberOfLanes); String[] cardsAccepted A String array of names of card types accepted for payment of toll tax, it can be null if the toll does not accept any card String[] tollTax A String array of toll tax chart (say “Train : 300”,”BullCart : 10”) boolean hasMonthlyPass This parameter defines whether there is any monthly pass available or not int numberOfLanes This parameter defines the number of lanes for each side

1 Answers   Telecom,


Differentiate between late binding and early binding.

1 Answers  


When must you use a pointer rather than a reference?

1 Answers  


What is the keyword auto for?

1 Answers  


What is abstraction with real time example?

1 Answers  


string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring

1 Answers   Quark,


Categories