tags:

views:

135

answers:

2

Possible Duplicate:
C++ program design

I want to know how modular programs are written in C++ i.e. how they are analysed, designed etc. Also names of reference books will be helpful.

A: 

I would take a look at a link about OOP: OOP Wiki

You'll want to learn about classes as classes are what drives modularity and object-oriented programming.

As for books I always liked C++ From The Ground Up

Ben Burnett
A: 

You may want to see "Code Complete" by Steve McConnell.

Although it isn't "C++ specific" and it doesn't cover some "deep" aspects of proper application design, it could be a good place to start from.

Kotti