What is function prototyping?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Explain the differences between list x; & list x();.

0 Answers  


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++?

0 Answers  


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

4 Answers   Quark,


What is size of a object of following class? class Foo { public: void foo(){} }

2 Answers   CA,






What are the important differences between c++ and java?

0 Answers  


Differentiate between a template class and class template?

1 Answers  


Is string data type in c++?

0 Answers  


What is the most common mistake on c++ and oo projects?

0 Answers  


What is the use of :: operator in c++?

0 Answers  


What is conversion constructor?

2 Answers   TCS,


How can we check whether the contents of two structure variables are same or not?

0 Answers  


Categories