C++ Language Reference

Welcome to the C++ Language Reference for the Windows SDK. This section provides detailed information about the C++ language features, keywords, and standard library components as they are implemented and supported within the Windows development environment.

Core Language Features

Explore fundamental C++ constructs and their behavior:

Standard Library

Discover the rich set of components provided by the C++ Standard Library:

Windows-Specific C++

Learn about C++ features and libraries tailored for Windows development:

Examples and Best Practices

Find code examples and guidance for effective C++ programming on Windows.

For instance, here's a simple example of a C++ function:

#include <iostream>

int Add(int a, int b) {
    return a + b;
}

int main() {
    int result = Add(5, 10);
    std::cout << "The sum is: " << result << std::endl;
    return 0;
}

Refer to specific API documentation for detailed usage and parameters.