Function with no Prototype

A C Function can be created without specifying any prototype

 Use the following function:
int fuctionname(int n)
{
 //body of the function.
}

Comments