Modernes C++ programmieren

Okt 23, 2024

lst-0035-book.cpp

// https://godbolt.org/z/bh1MsPhje 
#include <iostream>
int main() {
    int a = 3;
    int b = 7 + (a = 12) + 6;   // enthält eine Zuweisung
    std::cout << a << std::endl;
}