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 |
What is dev c++ used for?
What is class invariant in c++?
What is else if syntax?
What does it mean to declare a destructor as static?
Explain about profiling?
What is the difference between the indirection operator and the address of oper-ator?
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
Differentiate between late binding and early binding.
When must you use a pointer rather than a reference?
What is the keyword auto for?
What is abstraction with real time example?
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