C++ Operators


The following operators have been introducedor overloaded within C++.

         ::     Scope. Identifies a global variable.
         <<     Insertion.
         >>     Extraction.
         
        Apparantly new and delete are operators, not keywords.
        
         new Dynamc allocation operator
         delete Free memory.
         

Examples:


See Also:


C References

Base operators offered by C


Top Master Index C++ Keywords Functions


Martin Leslie