I'm new to C++ I have a ASCII art that looks like this
string title =
" _____ ____ _ _ _____ _ ______ _____ _____ _ \n"
" / ____/ __ \\| \\ | |/ ____| | | ____|/ ____/ ____| |\n"
"| | | | | | \\| | (___ | | | |__ | (___| (___ | |\n"
"| | | | | | . ` |\\___ \\| | | __| \\___ \\\\___ \\| |\n"
"| |___| |__| | |\\ |____) | |____| |____ ____) |___) |_|\n"
" \\_____\\____/|_| \\_|_____/|______|______|_____/_____/(_)\n";
I want to paste this ASCII art in the console but I don't want it to be on the left side I want it to be centered how would I go about centering this ASCII art in the console.