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