#callbyvalue
Explore tagged Tumblr posts
fortunatelycoldengineer · 1 year ago
Text
Tumblr media
What is the difference between call by value and call by reference in C? . . . . for more interview questions https://bit.ly/3EteTnZ check the above link
1 note · View note
ittimepass · 7 years ago
Text
Write a program in java to demonstrate call by value?
Write a program in java to demonstrate call by value?
class CallByValue {                 int data=50;                 void change(int data)                 {                                 data=data+100; //Changes will be the local variable only                 }                 public static void main(String arg[])                 {                                 CallByValue call=new CallByValue();                                …
View On WordPress
0 notes
fortunatelycoldengineer · 1 year ago
Text
Tumblr media
What is recursion in C? . . . . for more interview questions https://bit.ly/3EteTnZ check the above link
1 note · View note