lst-0186-godb.cpp
//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/185ha3q3f
#include <iostream>
int main() {
/* Summiere 1 bis 100 auf */
int summe = 0;
int zahl = 1; // Initialisierung vor der Schleife
for( ; zahl <= 100; zahl=zahl+1) { // leere Initialisierung
summe = summe + zahl;
}
std::cout << zahl << std::endl; // zahl gibt es nun noch außerhalb
}