|
|
|
|
|
by nostrademons
5472 days ago
|
|
The kinds of things you need C++ for - high-performance webservers, database engines, 3D renderers, etc. - often require very close communication between team members to get right. They're deep, not broad - the software is structured as a series of layers, and if you don't get the interfaces between the layers just right, the software won't even compile. Typical webapps are much more horizontal - they consist of a series of screens, and once the basic webserver framework is in place, developers can pretty much parcel out portions of the UI and work on them independently. |
|