Can class objects be passed as function arguments?


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

Post New Answer

More C++ General Interview Questions

write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement

4 Answers  


What is const pointer and const reference?

0 Answers  


What is the use of string in c++?

0 Answers  


Can I learn c++ without knowing c?

0 Answers  


Describe delete operator?

0 Answers  






What is binary search in c++?

0 Answers  


Do class declarations end with a semicolon?

0 Answers  


Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);

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 #include sstream?

0 Answers  


What is a concrete class?

1 Answers  


What is OOPs

12 Answers   CA,


Categories