From e8570b06f420ee1a704bfc69cfe970c3020cd513 Mon Sep 17 00:00:00 2001 From: Andrii Hermaniuk Date: Fri, 18 Mar 2022 11:55:06 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20'd?= =?UTF-8?q?u3/=20program.c'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- du3/ program.c | 57 -------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 du3/ program.c diff --git a/du3/ program.c b/du3/ program.c deleted file mode 100644 index fda7b25..0000000 --- a/du3/ program.c +++ /dev/null @@ -1,57 +0,0 @@ -#include -#include -#include -#include -#define SIZE 30 - -int main(){ - char pol[SIZE]; - memset(pol,'\0',SIZE); - //pol[SIZE]='\0'; - - int ch=0; - - for(int idx=0;1;idx++ ){ - ch=getchar(); - if(ch==EOF||ch==' ')break; - pol[idx]=ch; - } - - /*for(int i=0; i