Jump to content

Fourtyfreak

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Fourtyfreak

  1. I'm a noob at C++ but try this... #include <iostream> void mouse2(void); void mouse3(void); using namespace std; int main() { cout << "Three blind mice\n"; mouse2(); mouse3(); cin.get(); cin.get(); return 0; } void mouse2(void) { cout << "Three blind mice\n"; } void mouse3(void) { cout << "See how they run\n" << "See how they run"; } Simply call the function using its name, ie, mouse2(). If you aren't passing any values to the function simply leave the parentheses empty. Hope this helps. FF
×
×
  • Create New...