Hi,

What is the difference between
Code:
double a = 4.5;
and
Code:
double a(4.5);
Both gives the same output with
Code:
cout << a << endl;
Thanks.