Is c++ a dying language?
Answer / Brajesh Kumar
No, C++ is not a dying language. It remains widely used in many industries and continues to be an important programming language for various applications.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is virtual methods?
Can you write a function similar to printf()?
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
Why can you not make a constructor as const?
Memory is not a constraint. In a single iteration(NOTE: you can't go back), how will you find out the 10th last node/item in a linked list.
16 Answers BNB, FDS, Goldman Sachs, Nagarro,
If all is successful, what should main return a) 0 b) 1 c) void
How to access a variable of the structure?
What is the use of map in c++?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
Can user-defined object be declared as static data member of another class?
What are the advantage of using register variables?
explain the reference variable in c++?