From 627b541d60bfb0f305bec9692f91247761200795 Mon Sep 17 00:00:00 2001 From: Natalia Date: Thu, 5 Oct 2023 16:41:34 +0200 Subject: [PATCH] subiendo el proceso35.c --- proceso35.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/proceso35.c b/proceso35.c index 67754af..9654836 100644 --- a/proceso35.c +++ b/proceso35.c @@ -13,11 +13,9 @@ int main() { exit(-1); } if (pid == 0) { - // Código del proceso hijo i = i - 5; printf("Soy el proceso hijo. Valor: %d\n", i); } else { - // Código del proceso padre i = i + 5; printf("Soy el proceso padre. Valor: %d\n", i); }