Open Means Open Means
////////////////////////////////////////
#include
// Function prototype.
void ErrorMsg();
////////////////////////////////////////
// The main() function.
////////////////////////////////////////
int main()
{
    // Call the function.
    ErrorMsg();
    return 0;
}
////////////////////////////////////////
// Display an error message.
////////////////////////////////////////
void ErrorMsg()
{
    std::cout << "\aError!";
}

No comments

Login to post a comment

Show
  • Create an account
  • Forgot your username?
  • Forgot your password?

Related Articles

  • Function Prototype Example (with Function arguments)
  • About Us
  • Faqs
  • Contact Us
  • Disclaimer
  • Terms & Conditions