Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
A question on call by value, call by name, call by reference. f(x,y,z) { y := y+1; z := z+x; } main() { int a,b; a := 2 b := 2; f(a+b,a,a); print a; } What is the value of a printed for three different calls in main?
Related Answered Questions
Related Open Questions