Please enable JavaScript.
Coggle requires JavaScript to display documents.
C++ language (primitive types (int, float, double, bool, short, unsigned),…
C++ language
primitive types
int
float
double
bool
short
unsigned
language basics
branching
break
return
continue
statements
conditional
if
if else
?:
switch
loop
while
do while
for
operators
comparison
<, >, <=, >=, ==, =!
arithmetic
+, -, *, /, %
unary
+, -, ++, --, !
conditional
&&, ||
bitwise
&, |, ^, <<, >>
size
sizeof
type
typeid
variables
local
global
external
static
const
compound
array
reference
pointer
user defined types
typedef
enum
structure
class
packages
source files
namespaces
header files
strings
c-char array
std::string
scope
local
global
abstraction
function
declaration
definition
call
recursion
main
returned type
parameters
by address
by value
by reference