Wednesday 10 April 2013

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


Question: How many ways are there to initialize an int with a constant?
Answer: Two:-

1. int foo = 123;
2. int bar(123);

No comments:

Post a Comment