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;
}
// 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;
}