Please enable JavaScript.
Coggle requires JavaScript to display documents.
C++ pt.2 - Coggle Diagram
C++ pt.2
ios
istream
cin
ostream
cout
cerr
clog
use << or >> with formatting
hex
dec
setprecision()
showpoint
...
reading/writing char with
cout.get()
and
cout.put()
cin.getline()
conditionals
if else
if - else if
conditional operator
? :
switch
operators
binary arithmetic
+, -, /, %, ...
+, - (sign)
++, -- (in,decrement)
compound assingments
*=, +=, %=, ...
relational operators
==, >, <, !=, ...
loops
while
for
do while
macros
"#define, #undef"
"#ifndef", "#endif"
arythimetic type conversion
c++ performs implicit type conversions
smaller type => bigger type
explicit type conversion can be made with "(type) variable"