Next Previous Contents

C++ Programming HOW-TO

Al Dev (Alavoor Vasudevan) alavoor@yahoo.com

v12.0, 10 July 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 systems that is - Linux, MS DOS, BeOS, Apple Macintosh OS, Windows 95/98/NT/2000, OS/2, IBM OSes (MVS, AS/400 etc..), VAX 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 String

3. Usage of String 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_String.cpp

14. Appendix B String.h

15. Appendix C String.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