From 6ac1fb47daa84be7e2921444be4f598770712f23 Mon Sep 17 00:00:00 2001 From: 0niiC Date: Wed, 19 Nov 2025 13:48:05 +0700 Subject: [PATCH] --- proglabs/lab8/code.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proglabs/lab8/code.c b/proglabs/lab8/code.c index db9d512..8186bd4 100644 --- a/proglabs/lab8/code.c +++ b/proglabs/lab8/code.c @@ -119,7 +119,7 @@ int fillmass(int size, int *massive){ void viewmass(int size, int *massive){ printf("\t\tView Massive\n"); for(int i = 0; i < size; i++){ - printf(" | [%6d]\t%d\n",i,massive[i]); + printf(" | [%6d]\t%p\t%d\n",i,massive[i],massive[i]); } }