From e162d98b9d6ef1c202b855bc22224af6ec9db24c Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 25 Mar 2003 04:55:26 +0000 Subject: [PATCH] =?utf8?q?Se=20elimina=20el=20#define=20SCANF=5FSTRING=20p?= =?utf8?q?orque=20no=20ten=C3=ADa=20mucho=20sentido.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- ejercicio1.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ejercicio1.c b/ejercicio1.c index 998ed1e..4b5a7b6 100644 --- a/ejercicio1.c +++ b/ejercicio1.c @@ -28,8 +28,6 @@ /* Constante con la máxima cantidad de elementos aceptables */ #define CANT 10 -#define SCANF_STRING "%i,%i,%i,%i,%i,%i,%i,%i,%i,%i\n" - #define max(x, y) ((x > y) ? x : y) int esta_en(double, double, double, double, int); @@ -64,7 +62,7 @@ int main(void) { */ printf("Ingrese la lista de números (10 máximo) separados por comas (,): "); if (scanf( - SCANF_STRING, + "%i,%i,%i,%i,%i,%i,%i,%i,%i,%i\n", &valores[0], &valores[1], &valores[2], -- 2.43.0