Skip to content
Snippets Groups Projects
Select Git revision
  • 084b2c5e371411a465b3517d0afc2bebf931d2ba
  • 2022ws default protected
  • MPeth-2022ws-patch-01682
  • 2021ws
  • 2020ws
  • 2019ws
  • 2019ss
  • 2018ws
  • 2017ws
  • 2017ss
  • 2016ws
  • 2016ss
  • 2015ss
13 results

crash-6.c

Blame
  • Forked from Peter Gerwinski / es
    Source project has a limited visibility.
    aufgabe-2.c 166 B
    #include <stdio.h>
    
    int main (void)
    {
      char buffer[100];
      fgets (buffer, 100, stdin);
      for (char *p = buffer; *p; p++)
        printf ("%02x", *p);
      printf ("\n");
    }