////////////////////////////////////////
#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!";
}

Like it on Facebook, Tweet it or share this article on other bookmarking websites.

No comments