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 5047If 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 6210Post New C++ General Questions
What is c++ redistributable?
What is the basic of c++?
How many ways can a variable be initialized into in C++?
How to declaring variables in c++?
What is runtime polymorphism in c++?
Explain public, protected, private in c++?
What are friend classes? What are advantages of using friend classes?
What are literals in C++?
Why c++ is so important?
Describe Trees using C++ with an example.
Differentiate between an array and a list?
What is the difference between global int and static int declaration?
write a programme to get a character and thier ASCII value
Which operator cannot be overloaded c++?
Comment on local and global scope of a variable.