#include<iostream.h>
#include<conio.h>
int main()
{
clrscr();
void text(void) ; // Function declaration
text() ; // Call to a function
getch();
return 0;
}
void text(void) // definition of the function
{
cout<<"This is a demo program of function"<<endl ;
cout<<"showing function calling in main program" ;
}