What is the use of :: operator in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how to initialize a const data member.
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
What are virtual constructors/destructors?
What is a singleton class c++?
What is the use of function pointer?
What are the advantages and disadvantages of using inline and const?
2 Answers Polaris, TCS, Zimmer Biomet,
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
Is it possible for a member function to use delete this?
How do you define a class in c++?
How do you declare A pointer to a function which receives nothing and returns nothing
give me an example for testing a program showing the test path .show how the test is important and complex.