1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

reworded variable declaration comment

I reworded the comment so that the English and the German version have the same content.
See PR #3864
This commit is contained in:
caminsha 2020-02-25 17:13:36 +01:00
parent cbda14b7e6
commit 2533ae9d9e

View File

@ -180,11 +180,12 @@ int main (int argc, char** argv) {
// Typen
////////////////////////////////////////////////
// Alle Variablen müssen am Anfang des jetzigen Blocks deklariert werden.
// Wir deklarieren die Variablen dynamisch im Code um die Lesbarkeit im
// Tutorial zu verbessern.
// Compiler, welche nicht C99-kompatibel sind, verlangen, dass sämtliche
// Variablen zu Beginn des Blocks deklariert werden.
// C99-Konforme Compiler erlauben die Variablendeklaration an dem Punkt, an
// welchem die Variable verwendet wird.
// Wir deklarieren die Variablen dynamisch im Code um die Lesbarkeit im
// Tutorial zu verbessern.
// integer sind normalerweise 4 Bytes groß
int x_int = 0;