
-----------------------------------
Junaid2pac
Sat Jul 28, 2007 11:45 am

Function Prototype
-----------------------------------
Wat is the point of the function prototype?

-----------------------------------
wtd
Sat Jul 28, 2007 12:16 pm

RE:Function Prototype
-----------------------------------
#include 

int main()
{
   foo();
}

void foo() 
{
   std::cout 