Which software is used to run c++ program?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the oldest programming language?

0 Answers  


What is the purpose of template?

0 Answers  


In a function declaration what does extern means?

0 Answers   Flextronics,


Write a corrected statement in c++ so that the statement will work properly. x =+ 7;

2 Answers  


Explain selection sorting?

0 Answers  


Which is the best c++ compiler for beginners?

0 Answers  


What is a driver program?

0 Answers  


what is data encapsulation in C++?

0 Answers  


class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.

2 Answers   Quark,


Is c++ vector a linked list?

0 Answers  


What is the prototype of printf function?

0 Answers  


int *p = NULL; printf("%1d",p) ; what will be the output of this above code?

3 Answers   Microsoft,


Categories