Category: A ll Codes

07
Oct
2015

C++: Inheritance

One of the most important conecpts in object oriented programming is that of inheritance.Inheritance allows us to…

27
Sep
2015

C++ OOP: Constructor Destructor

The class constructor: A class constructor is a special member function of a class that is executed…

07
Aug
2015

Sorting Algorithm : Insertion Sort

From this two video I tried to re learn and implement the algorithm with pseudo code. Pseudocode:…

06
Aug
2015

URI Online Judge Solution | 1041 Coordinates of a Point

Here is the logic,  If x!=0 and y==0 then it will be in the y asix and…

06
Aug
2015

Bash For Loops

Syntax: for var in <list> do <commands> done example: named=’Zaki Live .Com’ for nametame in $named do…

01
Aug
2015

Bash Programming : Say user hello !

Take a name from user and say hello user! 😀 echo `expr “What is your name?”` read…