Quick A: Use raw string literals! If your compiler doesn't have them yet, nag.
The original question on SO, but note the best answer is pepper_chico's rather than the selected answer:
Only Detect Text in Quotations (C++)
I'm not great at programming and recently started to read tutorials on C++.
I decided I would attempt to make a simple blackjack program. I tried to make a title with "big text" but C++ is preventing me from doing it because it is detecting other things inside the text.
//Start Screen Begin cout << " ____ _ _ _ _ "; cout << "| __ )| | __ _ ___| | __(_) __ _ ___| | __ "; cout << "| _ \| |/ _` |/ __| |/ /| |/ _` |/ __| |/ / "; cout << "| |_) | | (_| | (__| < | | (_| | (__| < "; cout << "|____/|_|\__,_|\___|_|\_\/ |\__,_|\___|_|\_\ "; cout << " |__/ "; //Start Screen EndThis is what I am trying to display, yet keep getting the following error:
undefined reference to
'WinMain@16'I am asking if there is a way to tell C++ I only want it to read and display the text, and not use any functions.
Add a Comment
Comments are closed.