◄Up► ◄Contents► ◄Index► ◄Back► ─────C/C++ Compiler───────────────────────────────────────────────────────── Your choice of a memory model determines how memory is set up for program code and data. Microsoft C offers seven models to choose from. ┌────────────── Medium ───────────────┐ ◄Tiny► │ All functions calls are far (code │ ◄Small► │ in multiple segments), and all │ ◄Medium► │ data pointers are near (data in │ ◄Compact► │ one segment). The command-line │ ◄Large► │ equivalent is /AM. │ ◄Huge► │ ◄More Info► │ ◄Customize► │ │ │ │ └─────────────────────────────────────┘ -♦-