Please enable JavaScript.
Coggle requires JavaScript to display documents.
pl essentials (types (data types (primitive (numbers (whole (c++ :fire:…
pl essentials
-
control (flow) statments
-
-
looping statements
loops
types
for
About
form
for (variable initialization; termination condition; increment/decrement operation) { // statements to be executed}
- 1 more item...
-
-
-
-
what
break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code
STATMENTS
a group of words, numbers and operators that performs a specific task
VARIABLES
-
DECLARE
give name func, class, variable ...
-
-
-
comments
python
sigle line #, multiline ' .... '
single line // , multiline / .... /
C++
-
essentials
VARIABLES & CONSTANTS
variable
-
keyword
extern
-
Though you can declare a variable multiple times in your C++ program, but it can be defined only once in a file, a function or a block of code
-
-
-
-
-