diff options
| author | caminsha <c.96marco@hotmail.com> | 2020-02-25 17:13:36 +0100 | 
|---|---|---|
| committer | caminsha <c.96marco@hotmail.com> | 2020-02-25 17:13:36 +0100 | 
| commit | 2533ae9d9ed1fcafda296ffc79740f6ca5f6c090 (patch) | |
| tree | 1269edcb72c111578bf27fec829cda16dfec9c28 | |
| parent | cbda14b7e6ff5885fab16d98605f440be5c6d873 (diff) | |
reworded variable declaration comment
I reworded the comment so that the English and the German version have the same content.
See PR #3864
| -rw-r--r-- | de-de/c-de.html.markdown | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/de-de/c-de.html.markdown b/de-de/c-de.html.markdown index 9a938b22..f9090518 100644 --- a/de-de/c-de.html.markdown +++ b/de-de/c-de.html.markdown @@ -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; | 
