Difference between pass by value and pass by reference?


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

Post New Answer

More C++ General Interview Questions

What are proxy objects in c++?

0 Answers  


Is there finally in c++?

0 Answers  


Is c++ fully object oriented?

0 Answers  


Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?

0 Answers  


Const char *p , char const *p What is the difference between the above two?

0 Answers   TCS,






What is a type library?

0 Answers  


What is name mangling?

3 Answers  


What is heap sort in c++?

0 Answers  


What is an operator in c++?

0 Answers  


What is the use of turbo c++?

0 Answers  


How to implement is-a and has-a class relationships?

0 Answers  


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


Categories