Answer:
The program to this question can be given as:
Program:
#include<stdio.h> //include header file.
void print_error_description(int x) //function definition
{ //body of the function
printf("The value of the parameter is = %d",x); //print value.
}
int main() //main method
{
print_error_description(14); //calling a function
return 0;
}
Output:
The value of the parameter is = 14
Explanation:
According to the question we define a function that is "print_error_description()". In this function we pass an integer element that is x. In this function we use void as a return type because this return type does not return any value. In the main method we call the function and pass the value that is 14.