What is the difference function call by value & function
call by reference?
Answer Posted / sangeetha
In call by value, the changes made in the formal arguments
does not affect the actual argument
In call by reference, the changes made in the formal
arguments does affect the actual argument
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does node * mean?
How would you obtain the current time and difference between two times?
When should volatile modifier be used?
What standard functions are available to manipulate strings?
Why isnt there a numbered, multi-level break statement to break out
Explain what is a program flowchart and explain how does it help in writing a program?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
How to write a multi-statement macro?
what is the format specifier for printing a pointer value?
Is multithreading possible in c?
What are the parts of c program?
Why is it that not all header files are declared in every C program?
Write a program to print "hello world" without using a semicolon?
what is use of malloc and calloc?