Please enable JavaScript.
Coggle requires JavaScript to display documents.
C++ pt.3 - Coggle Diagram
C++ pt.3
functions
A function declaration can be omitted only if the function is defined within the same
source file immediately before it is called
-
-
if don't have return, void type declaration
-
-
-
-
function signatures: functions with same name, but different type of arguments
string
-
-
possible to use +, +=, ==, <, > operators
many methods: .lenght(), .erase(), .insert(), .replace(), .find()
-
storage classes
-
static (not added to the stack, stored as data but access restricted)
auto (default, object is stored at stack)
-
-
-
-