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 4946If 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 6038Post New C++ General Questions
Why is polymorphism useful?
What is the two main roles of operating system?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
What is rtti in c++?
Define whitespace in C++.
What do you mean by translation unit?
Describe private, protected and public?
What is the disadvantage of using a macro?
Do vectors start at 0?
What is a wchar_t in c++?
What are the types of array in c++?
What are the advantages of c++? Explain
How does class accomplish data hiding in c++?
What return value must conversion operators have in their declaration?
What is the use of pointer in c++ with example?