Next Previous Contents

C++ Programming HOW-TO

Al Dev (Alavoor Vasudevan) alavoor@yahoo.com

v8.0, 26 April 2000


This document discusses methods to avoid memory problems in C++ and also will help you to program properly in C++ language. The information in this document applies to all the operating sytems that is - Linux, MS DOS, Apple Macintosh OS, Windows 95/NT, OS/2, IBM OSes, VMS, Novell Netware, all flavors of Unix like Solaris, HPUX, AIX, SCO, Sinix, BSD, etc.. and to all other operating systems which support "C++" compiler (it means almost all the operating systems on this planet!).

1. Introduction

2. Download mychar

3. Usage of mychar class

4. C++ Zap (Delete) command

5. Pointers are problems

6. Usage of my_malloc and my_free

7. Debug files

8. C++ Online-Docs

9. Memory Tools

10. Related URLs

11. Other Formats of this Document

12. Copyright

13. Appendix A example_mychar.cpp

14. Appendix B mychar.h

15. Appendix C mychar.cpp

16. Appendix D my_malloc.cpp

17. Appendix E my_malloc.h

18. Appendix F debug.h

19. Appendix G debug.cpp

20. Appendix H Makefile


Next Previous Contents