#include<iostream.h>
class program
{
public:
void call()
{
cout<<"\n HELLO WORLD ";
}
};
int main()
{
program p;
p.call();
return 0;
}
a function call is one where you call the member function from the main function...in the above program,in the main function, p.call(); is the function call of the object,"program".