Should I learn c or c++ or c#?
No Answer is Posted For this Question
Be the First to Post Answer
can anybody please tell me how to write a program in c++,without using semicolon(;)
Implement stack operations with pointers with appropriate exception checks.
What is the difference between delegation and implemented-in-terms-of?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
Write a Program for find and replace a character in a string.
What language is a dll written in?
How to declaring variables in c++?
Explain the differences between list x; & list x();.
What is using namespace std in cpp?
Keyword mean in declaration?
What is null c++?
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";