Why Analysis of
algorithms :
An algorithm is
a step by step procedure i.e. a set of instructions to solve the given problem.
For a problem there can be many algorithms to solve it. But how to find the
best algorithm among those?. Analysis of algorithms helps in determining the
solution for it.
What does it mean?
...
Jul 21, 2015
Jul 2, 2015
TYPEDEF - create variables by your name
Typedef:
Typedef is a keyword used to assign
new names to existing data types. This is same
like defining alias for the commands.
typedef existing_name alias_name;
After this
statement, instead of existing_name we can use alias_name.
If we look at an example
typedef int...