Addition of 2 Numbers using Function: C Program
Satish B
https://technotip.com/7730/addition-of-2-numbers-using-function-c-program/
In this video tutorial lets learn how to add two integer numbers using functions in C programming language.
Here we call user defined function add from within printf() function. We pass 2 integer variables as argument to add method. The values of variable a and b are copied to variable x and y. Note that values of variable x and y are local to function add and main function do not know values of x and y. x and y are separate copy and altering which do not alter the value of variables a and b.
a and b are called actual arguments. x and y are called formal arguments.
C Programming Interview / Viva Q&A List https://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert https://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=1fmOsKbnTxQ
4947008 Bytes