SCRATCH
PYTHON
Introduction
Datatypes
Variables
Operators
Assignment
Input/output
If condition
Arrays
Functions
For loop unplugged
For loop
While loop unplugged
While loop
1) Write the code which assign value 10 to variable x.
2) Write the code which assign variable x a value increased by 10.
3) Write the code which assign variable x a value decreased by 1.
1) x=10;
2) x=x+10;
3) x=x-1;
https://en.cppreference.com/
https://www.geeksforgeeks.org/c-plus-plus/
https://www.codecademy.com/learn/learn-c-plus-plus
https://www.tutorialspoint.com/cplusplus/
https://www.w3schools.com/cpp/