Call by value and call by reference in C-Important topics in C-computer science/Information technology
Call by value and Call by Reference in C ->Watch this for FUN - Funny job interview Are you getting bored with online lectures? ->Watch this - When online lectures are boring There are two ways to call out a function in C and those are Call by Value and Call by Reference. So, what they are, let's find out. <><><><><><><> Call by value : Here the values in the function get copies of the original values but they don't get a revert to the modified value. For example: void swap(int x, int y) { int temp=x; ...