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 is c++ called oops? Explain
Is it possible to use a new for the reallocation of pointers ?
What is functions syntax in c++?
What do you mean by Stack unwinding?
What should main() return in c and c++?
What is prototype in c++ with example?
Define a pointer to a data member of the type pointer to pointer?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
How many types of modularization are there in c++?
What are static member functions?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
write the programme that convert a interger to biniry number