What's this?

Just another thing I see for the first time:
 
int i(0);

anyone can explain?
Thanks!
You are initializing the int object with the value zero using object-constructor syntax. It is equivalent to
int i = 0;

:-)
Thanks
Topic archived. No new replies allowed.