Programming is fun and it also gives you power to do very interesting things
Here are building blocks of any programming language.
if you learn them, you pretty much learn all the languages.
Constant Values,
numbers, 1, 2, 56, 3.4, -1.223
String constants , "I am Hero" "I am King"Variables
var myvariable = 10;
int myinteger = 100;
string mystring = "I am Bilal";Arithmetic operations
Addition : var x = 10 + 20;
Subtraction: var y = 40-90;
Multiplication, division, modulus, cosine, sine other scientific operationsLogical operation
And - "I am king" AND "I am Bilal"
Or - "You give me Votes" OR "you go to Hell"
NOT - I am NOT a HackerConditional statements
IF, ELSE, ELSE IF,Switch Cases
Case 1: Case 2: so on
Switch CaseLoops
While loop
For loop
Foreach Loop
Do While loopData Structures
Variables
Arrays
Structures
ClassesFiling,
Where you learn to read and write to a file.
using your program.
If you want to learn to program, This this as a guide
you need to learn all these things. from the very start
if you learn them. you pretty much can code in all languages.
there will be difference of syntax but. mostly all these concepts will be used.