Function prototypes

Matching exercise

    
Match the items on the right to the items on the left.
Function declaration
Function call
Function definition
Library Functions
User-defined functions
return_type function_name (argument list);
function_name (argument_list)
return_type function_name (argument list) {function body;}
scanf(), printf(), gets(), puts(), ceil(), floor()
functions which are created by the C programmer