Programming Org. Language 1. Consider the following program written in C syntax: void fun (int first, int second) { first += second; second += first; } void main () { int list[2] = {6, 7}; fun (list[0], List [1]); } For each of following parameter-passing methods, what are the values […]