395 32 10MB
English Pages [6]
WORLD’S #1 QUICK REFERENCE SOFTWARE GUIDE
Programming Language
The code in this guide was tested against GCC 8.2.1 and should work with any C++ compiler that fully implements the C++17 standard.
Source Code Comments
• There are two types of source code comments: –– Line comments start with two forward slashes // and continue until the end of the line of text. –– Block comments can contain multiple lines of text, start with /*, and end with */. • Prior to compilation, comments are replaced with a single space character. Example: std::cout