Saved Bookmarks
| 1. |
How Many Ways Are There To Initialize An Int With A Constant? |
|
Answer» Two. There are two formats for initializers in C++ as shown in the example that follows. The first format uses the traditional C NOTATION. The second format uses CONSTRUCTOR notation. int foo = 123; int BAR (123); Two. There are two formats for initializers in C++ as shown in the example that follows. The first format uses the traditional C notation. The second format uses constructor notation. int foo = 123; int bar (123); |
|