What's the hardest coding language?
Answer / Yogesh Shukla
The difficulty of learning a programming language can vary greatly depending on one's background and previous experience. Some languages are considered challenging due to their syntax, complexity, or specific use cases. Examples include Assembly, Lisp, and Prolog.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the error in the code below and how should it be corrected?
What is null pointer and void pointer?
what is data Abstraction
What is the difference between global variables and local variable
class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable
Explain one-definition rule (odr).
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
Where do I find the current c or c++ standard documents?
What is the importance of mutable keyword?
which is best institue to learn C/C++ IN AMEERPET OR MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE
What is anonymous object in c++?
In java a final class is a class that cannot be derived. How can you make a similar class in C++