C++ very basic questions

Thread Starter

ep.hobbyiest

Joined Aug 26, 2014
201
As in the c++ code we include
using namespace std

what is std is it just name to namespace?
and namespace contain the all standard function ?
 

Papabravo

Joined Feb 24, 2006
21,225
In a nutshell
  1. Objects have data.
  2. Objects execute procedures.
  3. Objects implement behavior.
In theory you don't have to know anything about the internals in order to use them.
 
Top