How do you clear a buffer in c++?


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

Post New Answer

More C++ General Interview Questions

What is namespace std; and what is consists of?

0 Answers  


When should we use multiple inheritance?

0 Answers  


What is runtime errors c++?

0 Answers  


template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }

1 Answers   Quark,


What does '\r' and '\b' mean? Please explain with example.

7 Answers  






What is a manipulative person?

0 Answers  


What is vector pair in c++?

0 Answers  


Describe private, protected and public – the differences and give examples.

0 Answers  


What programming language should I learn first?

0 Answers  


Can we get the value of ios format flags?

0 Answers  


What problem does the namespace feature solve?

1 Answers  


Explain method of creating object in C++ ?

0 Answers   Wipro,


Categories