Skip to content
#

cpp20

cpp logo

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.

Here are 340 public repositories matching this topic...

galkinvv
galkinvv commented Jan 21, 2020

The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal

It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:

const char win_path[] = R"(c:\some\unescaped\path)";

The same cppreference link als

eseiler
eseiler commented Sep 16, 2020

Code:

#include <seqan3/argument_parser/all.hpp>

int main(int argc, char ** argv)
{
    seqan3::argument_parser parser{"App", argc, argv, false};

    parser.info.author = "Foo Bar";
    parser.info.email = "foobar@example.com";
    parser.info.short_copyright = "BSD 3-Clause License";

    try
    {
        parser.parse();
    }
    catch (seqan3::argument_parser_error cons

Created by Bjarne Stroustrup

Released October 1985

Website
isocpp.org
Wikipedia
Wikipedia
You can’t perform that action at this time.