cs264 C++
what is c++
c++ is build ont C th add many programming constructs, but most notably the addition of object oriented programming. features: compiled; not intergreted portable; when you stick to the standards close the metal -good for high-performance descended from c which was originally deveoped by Denis Ritchie targeted at Unix system development. many languages drive their syntax from C(e.g. java, c#) provided pointers, dynamic memory. etc.
data structure
simple: 1.integral: bool char short int long 2.floating float double long double address: pointer reference structured: array struct union class