What is the difference between reference and pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope resolution operator in c++ with example?
Discuss the possibilities related to the termination of a program before entering the mainq method?
What is difference between class and structure in c++?
How to change constant values?
Difference between declaration and definition of a variable.
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
What is boyce codd normal form in c++?
write a C++ programming :if the no is between 32 to 50 it will be odd.
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
Explain terminate() function?
What are the various storage classes in C++?
Explain the static member function.