1

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.

Community
  • 1
  • 1
Supriyo
  • 97
  • 3
  • 6

2 Answers2

0

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
  • 1,554
  • 10
  • 17
0

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.

M. Williams
  • 4,945
  • 2
  • 26
  • 27