Explain how to initialize a const data member.
No Answer is Posted For this Question
Be the First to Post Answer
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
What is c++ map?
What is the operator in c++?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Why c++ is the best language?
What are arrays c++?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
What relational operators if statements in c++?
How do I run a program in notepad ++?
What is switch case in c++ syntax?
What is oop in c++?