what is code for call by value and call by reference?
Answer / anilkumar.s
#include<iostream.h>
class call
{int a,b;
void callbyvalue(int x,int y)
{ a=x;
b=y;
int c;
c=a;
a=b;
b=c;
}
void callbyreference(int *x,int *y)
{
a=x;
b=y;
int *t;
t=a;
a=b;
b=t;
}
void display()
{
cout<<" a=" <<a<<" "<<"b="<<b;
}
void main()
{
call o;
o.callbyvalue(10,20)//value can't be swap
o.callbyreference//value can be swaP
| Is This Answer Correct ? | 7 Yes | 1 No |
what is the main difference between c and c++?
386 Answers AZTEC, B.Tech, CMC, College School Exams Tests, HCL, IBM, ITM, Khalsa Institute, Microsoft, Oracle, Sanjeevni Institute, TCS, Tech Mahindra, Wipro, ZeOmega,
what is oppes
what is function over loading?
What is the diamond problem in inheritance?
diff between Virtual mathod and abstract method?
OOP'S advantages of inheritance include:
Give two or more real cenario of virtual function and vertual object
i got a backdoor offer in process global,Bangalore..Can i work with it?
what is runtime polymorphism? For the 5 marks.
What is polymorphism in oop example?
ambiguity regulation of multiple inheritance with example.
Please tell me the oops concept with detailed answer