--- Aims Boy <aims_boy2...@...> wrote: > How I make a program of process of creation and deletion in C++ language of > Linux operating system?
I'm not sure if you asked about the C++ operators new and delete or if you asked about how to create and delete a file. About the C++ operators new and delete: http://en.wikipedia.org/wiki/Delete_%28C%2B%2B%29 About the creation and deletion of a file: http://www.opengroup.org/onlinepubs/009695399/functions/creat.html http://www.opengroup.org/onlinepubs/009695399/functions/remove.html BTW: The C++ language of Linux OS, that is the C++ language as understood by g++, follows the standard ISO/IEC 14882 .
