7/3/09

How many ways are there to initialize an int with a constant?

1 comment:

Achyut said...

There are two ways to initialize
1. int i = 10;
2. int i(10);

ITUCU