Getting these errors:
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(16): warning C4129: '|' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(16): warning C4129: ' ' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(16): warning C4129: '_' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(16): warning C4129: '(' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(17): warning C4129: '/' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(20): warning C4129: '_' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(21): warning C4129: '|' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(22): warning C4129: '|' : unrecognized character escape sequence
1>c:\users\shawn\documents\visual studio 2013\projects\ghathica\ghathica\main.cpp(22): warning C4129: '_' : unrecognized character escape sequence
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#include<iostream>
#include<fstream>
using namespace std;
void ghathicaTitle();
int main()
{
ghathicaTitle();
return 0;
}
void ghathicaTitle()
{
cout << "############################################################################\n";
cout << "# _______ _______ _________ _________ _______ _______ #\n";
cout << "# ( ____ \|\ /|( ___ )\__ __/|\ /|\__ __/( ____ \( ___ ) #\n";
cout << "# | ( \/| ) ( || ( ) | ) ( | ) ( | ) ( | ( \/| ( ) | #\n";
cout << "# | | | (___) || (___) | | | | (___) | | | | | | (___) | #\n";
cout << "# | | ____ | ___ || ___ | | | | ___ | | | | | | ___ | #\n";
cout << "# | | \_ )| ( ) || ( ) | | | | ( ) | | | | | | ( ) | #\n";
cout << "# | (___) || ) ( || ) ( | | | | ) ( |___) (___| (____/\| ) ( | #\n";
cout << "# (_______)|/ \||/ \| )_( |/ \|\_______/(_______/|/ \| #\n";
cout << "# #\n";
cout << "############################################################################\n";
}
|
Not really sure how to get around this. Any ideas?