What is the best way to take screenshots of a window with c++ in windows?


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

Post New Answer

More C++ General Interview Questions

Write about the various sections of the executable image?

0 Answers  


What are the basics of classifying different storage types, why?

2 Answers   Astergate, Symphony,


How c functions prevents rework and therefore saves the programers time as wel as length of the code ?

0 Answers  


What is object slicing and how can we prevent it?

2 Answers   Tech Mahindra,


What is the difference between the parameter to a template and the parameter to a function?

0 Answers  






what are Access specifiers in C++ class? What are the types?

0 Answers  


Why c++ is so important?

0 Answers  


How do you initialize a string in c++?

0 Answers  


What does new in c++ do?

0 Answers  


Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?

0 Answers  


What do you mean by funtion prototype?

0 Answers  


class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData

2 Answers   Quark,


Categories