5
votes
What’s the advantage of using C over C++ or is there one?
Portability has been mentioned before but it has not been stressed enough. Something written in C89 (ANSI 1989 Standard) is EXTREMELY PORTABLE, i …
2
votes
What are the often misunderstood concepts in C++?
I think the most misunderstood concept about C++ is why it exists and what its purpose is. Its often under fire from above (Java, C# etc.) and from below (C). C++ has the ability to operate close t …
1
vote
What would it take for people to move away from C++?
You are going about this the other way around. People choose problem/application domains they are interested in. The choice of language follows from that decision and is quite trivial.
Nobo …
86
votes
Why was Google’s Chrome browser written almost entirely in C++ and not C# or Java?
There are a number of reasons, which can be broadly classified as business reasons and technical reasons.
Lets start with the business reasons.
C# is an open, public stan …
1
vote
Where should validation logic be implemented?
A contract (interface) between two parties say, A and B such that both have certain obligations. What does the contract say? Is B supposed to receive validated data? If that is the case, B should n …
