Modernes C++ programmieren

Okt 23, 2024

lst-0095-godb.cpp

//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/eW1cfYcGs 
#include <iostream>
void ausgabe(int a, int b) {
    std::cout << a << ' ' << b << '\n';
}
int zahl() {
    static int val = 0;
    return ++val;
}
int main() {
    ausgabe(zahl(), zahl()); // in welcher Reihenfolge?
}