What is the difference function call by value & function
call by reference?
Answer Posted / sona
In call by reference we provide address of another variable
In call by value we directly assigned value to variable
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is hashing in c?
What is the difference between Printf(..) and sprint(...) ?
What are compound statements?
What is logical error?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What does sizeof int return?
What is the difference between the local variable and global variable in c?
In c language can we compile a program without main() function?
Give me the code of in-order recursive and non-recursive.
What is c++ used for today?
What is a header file?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is the role of this pointer?
Explain what are run-time errors?