Functions

Go4Expert Member
5Sep2007,19:28   #1
arvind_khadri's Avatar
how exactly can we deine a function...(define as in english not the coding part)
Team Leader
5Sep2007,19:37   #2
DaWei's Avatar
In C/C++ a function accepts 0 or more arguments and performs work with them. It often, but not always, returns a value. Unlike inline code, a function can be invoked from any point in the program. When it has done it's job, execution will resume from the point at which it was called.

Consider y = sin (x). sin is the function, x is the argument, and y is the return. The work the function does is to calculate the sin of the argument and return the result.
Go4Expert Member
5Sep2007,19:45   #3
arvind_khadri's Avatar
ok...then wats an inline code...eg is a codin written in a for loop a inline code