What is the full name of logo?
No Answer is Posted For this Question
Be the First to Post Answer
Is c# written in c++?
what is Loop function? What are different types of Loops?
What are c++ redistributables?
You want to link a c++ program to c functions. How would you do it?
Write a program using display() function which takes two arguments.
what is the use of void main() in C++ language?
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
Is c++ pass by reference or value?
What is anonymous object in c++?
Which programming language's unsatisfactory performance led to the discovery of c++?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
What is an undefined behavior and sequence points