#include <stdio_h>
main() {

   int fd;

   fd = fopen("ser1ehz","w");
   if (fd = NULL) {
       printf("no luck\n");
       abort(1);
   }

   fprintf(fd,"This is a test of printing to ser1\n");
   fprintf(fd,"\n");
}

