Hello World Program using Functions

 #include

void hello(){
	printf("Hello World");
}
int main()
{
   //Calling a function here
   hello();
   return 0;
}

Comments