Introduction To Programming: Lesson 3
Introduction To Programming: Lesson 3
Variable
Variable
Variable
10323
Variable
Variable starts with
1. Character 2. Underscore _ (Not Recommended)
Variable
Variable
Variable is the name of a location in the memory e.g. x= 2;
Variable
In a program a variable has: 1. Name 2. Type 3. Size 4. Value
Assignment Operator
=
x=2
X
Assignment Operator
L.H.S = R.H.S. X+ 3 = y + 4 Wrong
Z = x +4 x +4 = Z
Wrong
X = 10 ; X = 30 ;
X X
10
30
X = X + 1;
10
+ 1
= 11
X
Data type
#include <iostream.h> main ( ) { int x ; int y ; int z ; x = 10 ; y = 20 ; z=x+y; cout << " x = " ; cout << x ;
cout << " y = " ; cout << y ; cout << " z =x + y = " ; cout << z ;
Data Types
1. 2.
3.
4.
5.
6.
Arithmetic operators
Plus Minus Multiply + *
Divide
Modulus
/
%
Arithmetic operators
i+j x*y a/b a%b
% = Remainder
5%2=1 2%2=0
4/2=2 5/2=?
Precedence
() *,/,% +,-