given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
2 4847If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
3 5909Post New C++ General Questions
What is atoi?
Show the declaration for a static function pointer.
Mention the purpose of istream class?
How is data hiding achieved in c++?
Why was c++ created?
Incase of a function declaration, what is extern means?
Is it possible for a member function to delete the pointer, named this?
What is the use of data hiding?
What are the three forms of cin.get() and what are their differences?
Is c++ built on c?
What is the c++ code?
What is setf in c++?
What do you mean by early binding?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Can a constructor be private?