/media/sda-magnetic/david/Extern-Magnetic-2022-06-29/Extern01/Dokumente-2021-05-8/disk10-ab-2020-01-10/02-debian-pc2-work/informatik/pascal-compiler/siac4t/test.c


#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(void) {
    char buf[514];
    char pattern[] = "Hallo ABC Hallo ABCDEFG Hallo Hello ELOH HELO Ich bin ein Text ABCD ABCD XYZ XYZ";
    
   int c;

   while((c=getc(stdin)) != EOF)
      putc(c,stdout);
   return EXIT_SUCCESS;


return 0;
}