Write a function that swaps the values of two integers, using int* as the argument type?


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

Post New Answer

More C++ General Interview Questions

Write about c++ storage classes?

0 Answers  


Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement

0 Answers  


What is endianness?

0 Answers  


Do class declarations end with a semicolon? Do class method definitions?

0 Answers  


What are class and object in C++?

1 Answers  






which operator is used for performing an exponential operation a) > b) ^ c) none

0 Answers  


What does new in c++ do?

0 Answers  


Explain the register storage classes in c++.

0 Answers  


What is a class template in c++?

0 Answers  


What do you mean by late binding?

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,


Explain the pure virtual functions?

0 Answers  


Categories