What is function prototyping?
Explain the differences between list x; & list x();.
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
What is class and structure in c++?
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
What is size of a object of following class? class Foo { public: void foo(){} }
What are the important differences between c++ and java?
Differentiate between a template class and class template?
Is string data type in c++?
What is the most common mistake on c++ and oo projects?
What is the use of :: operator in c++?
What is conversion constructor?
How can we check whether the contents of two structure variables are same or not?