From 78a12071608f53869e8b6fe692b7e0ab05239514 Mon Sep 17 00:00:00 2001 From: =?utf8?q?tom=C3=A1s=20zerolo?= Date: Sun, 29 Jun 2025 16:19:08 +0200 Subject: [PATCH] fixies --- hello.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hello.c b/hello.c index ed1edf1..cce3a97 100644 --- a/hello.c +++ b/hello.c @@ -8,7 +8,6 @@ char* Tasche[Taschenplatz]; struct Lebewesen Kaempfer; -Kaempfer.Lebenspunkte = 100; void addFundsache(char** Tasche, char* Ding) { @@ -121,7 +120,10 @@ int main(int argc, char *argv[]) { char title[] = "Mein kleiner Dungon\n"; char Richtung; - printf("%d", Kaempfer.Lebenspunkte) + + Kaempfer.Lebenspunkte = 100; + + printf("%d", Kaempfer.Lebenspunkte); printf("%s", title); char** Tasche = Fundsachen(); -- 2.30.2