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 4846If 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 5907Post New C++ General Questions
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
Differentiate between a constructor and a method in C++.
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
How do you decide which integer type to use?
How do you compile the source code with your compiler?
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
How does class accomplish data hiding in c++?
Why is c++ still best?
How do you clear a set in c++?
What does extern mean in a function declaration in c++?
What is a hashmap c++?
What is the main function c++?
Explain Text Manipulation Routines?
What is flag in computer?
Define anonymous class.