> Online tutorial : Declaration of function in c
Showing posts with label Declaration of function in c. Show all posts
Showing posts with label Declaration of function in c. Show all posts

Declaration of function in c

Declaration of function:

1.function name

2.function type

3.list of parameter

syntax
Function type function_type(parameter list)

Example


int
mul(int m,int n);