Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, March 11, 2015

What is function body ?

The body of the function or function body is enclosed in braces. The function body or body of the function contain statements, declaration and return statements. Return statements depend upon the function type.

ex:
int add( int x, int y)
{
                int sum;
                sum = a + b;
                return sum;

No comments:

Post a Comment