The syntax for a function declaration in C is:
return-type function-name(list-of-parameter-types);
The following example declares a function that takes an int type parameter and returns an int.
Example:int myFunction(int);Copyright © 2026 eLLeNow.com All Rights Reserved.