functions return type in c
snippet in c
functions return type in c
user5326
// Function Declaration :: int function (int);
// Function Call :: function( x );
// Function Return Type :: int
// Function Definition ::
int function(int x)
{
// statements;
return x;
}