C++/Function/Function Define
Версия от 14:21, 25 мая 2010; (обсуждение)
Defining a Function
#include <iostream>
using namespace std;
void printMessage (void)
{
cout << "Hello world!";
}
int main ()
{
printMessage();
return 0;
}
A
#include <iostream>
using namespace std;
void printMessage (void)
{
cout << "Hello world!";
}
int main ()
{
printMessage();
return 0;
}