• home

Tutorials

  • C++ Language: Learn this versatile and powerful programming language. Includes detailed explanations of pointers, functions, classes and templates, among others...
  • Reference

    Description of the most important classes, functions and objects of the Standard Language Library, with descriptive fully-functional short programs as examples.
    Browse the C++ Reference

    Articles

    User-contributed articles, organized into different categories.
    You can contribute your own articles!
    Browse Articles

    Latest forum activity:

    run tasklist in c++   [General C++ Programming]
     
    Is there a function in C PLUS Plus to know which programs are running on the other user? like this: tasklist /FI "IMAGENAME eq notbad.exe" /FI "USERNAME eq HWL...
    [no replies]
    Need Help with C++ Basics!   [General C++ Programming]
     
    Have a look at this site: https://www.learncpp.com/ For a book I suggest Ivor Horton's 'Beginning C++23: From beginner to pro' https://www.amazon.co.uk/Beginn...
    [1 reply] : The original post was [salty processed canned pork]. (by Ganado)
    Clang with Visual Studio   [Lounge]
     
    With VS2022 17.6.5 (latest version that works with Windows 7) the Clang version installed is 15.0.1 Is it possible to update this version of clang to the la...
    [2 replies] Last: Sidenote: MS support for Windows 7 did end already 2020-01-14, and eve... (by keskiverto)
    convert autoit code to c++   [General C++ Programming]
     
    hello all , please how can convert this code to c++ What this code does is when I go to another user in Windows, this program conn.exe runs . #include <WinA...
    [2 replies] Last: Thanks for replay jonnin i have 10 users in my pc ,i created a progra... (by Hawlong)
    Turn-based Card Game Feature: Out-of-turn Trade Request   [General C++ Programming]
     
    Just FYI, I haven't written any code for the game. I'm in the planning phase, brainstorming how certain game features might affect the structure/architecture of...
    [2 replies] Last: As I see it, you have three choices ( order of difficulty) 1) The si... (by AbstractionAnon)
    Need a starter project for Visual Studio 2022, C++, multiple dialogs   [Windows Programming]
     
    Need a starter project for Visual Studio 2022, C++, multiple dialogs I cannot get a project started as I need it. Visual Studio 2022, C++, multiple dialogs. ...
    [3 replies] Last: The requirements for this smell a lot like a school/college assignment... (by George P)
    by PeteDD
    Constructor for derived class   [General C++ Programming]
     
    I am adding some methods to the NTPClient by creating a derived class MyNTP. But now, I can't figure out how to invoke the new class. That is, I can't figur...
    [11 replies] Last: Thank you all! @SeePlus, Yes, exactly, thank you! But what you're ... (by PeteDD)
    by PeteDD
    Adding methods to class via derived class   [General C++ Programming]
     
    I am using an NTPClient and want to add a few methods to its functionality. I have no difficulty going into the source of the client and, for example, adding t...
    [1 reply] : solved... but only in part... added "MyNTP::" in .cpp String MyNTP... (by PeteDD)
    new versions of vcpkg don't seem to support classic mode!!   [Windows Programming]
     
    Hi, the latest versions of vcpkg do not seem to support classic mode. I get: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\vcpkg>vcpkg i...
    [3 replies] Last: Speaking of bugs with vcpkg.... A recent update to vcpkg apparently d... (by George P)
    Convert string_view to string ref   [General C++ Programming]
     
    As a simple test case for much larger code, I want to pass std::string_view as a param to a function taking an arg of const std::string&. This isn't accepted wi...
    [3 replies] Last: Elwood P. Dowd is on stand-by. (by George P)