Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • docker
  • feature_readme
3 results

docker-container.tex

Blame
  • Forked from Peter Gerwinski / Online-Werkzeuge
    Source project has a limited visibility.
    fhello-1.c 139 B
    #include <stdio.h>
    
    int main (void)
    {
      FILE *f = fopen ("fhello.txt", "w");
      fprintf (f, "Hello, world!\n");
      fclose (f);
      return 0;
    }