How many ways are there to initialize an int with a constant?
Answer / nikhil upadhyay
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);
It's acceptable when a programmer does not know about the second notation, although they should certainly know about the first one. Many old-timer C programmers who made the switch to C++ never use the second idiom, although some wise heads of C++ profess to prefer it. If your applicant is quick with the right answer, that's a good sign.
Is This Answer Correct ? | 0 Yes | 0 No |
What are containers in c++?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
Explain what data encapsulation is in c++?
What are c++ tokens?
What is an accessor in c++?
why the size of an empty class is 1
Write a Program for find and replace a character in a string.
What does namespace mean in c++?
Explain binary search.
sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
What is a mutex and a critical section.Whats difference between them?How do each of them work?
What are the defining traits of an object-oriented language?