Implement a 2D bit-matrix representing monochrome pixels which will have only OFF/ON values and will take on an average only one bit of memory for each stored bit. How to perform various operations on it?
No Answer is Posted For this Question
Be the First to Post Answer
When must you use a constructor initializer list?
How to stop class inheritance in C++ with condition that object creation should be allowed
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }
What is name mangling/name decoration?
Define an Abstract class in C++?
what is the difference between a pointer and a reference?
0 Answers Amazon, Blue Star, C DAC,
In C++ what do you mean by Inheritance?
What are the costs and benefits of using exceptions?
Can we use THIS Pointer in static function – Reason in C++?
C++ supports multiple inheritance. What is the “diamond problem” that can occur with multiple inheritance? Give an example.