Skip to content
Snippets Groups Projects
Select Git revision
  • 8b47188adb90c6bc8d6454ccdfda930376e89adc
  • master default protected
  • 7-funktion-um-zuruck-zum-menu-zu-kommen-fehlt
  • V1.0
4 results

main_player_two.py

Blame
  • array-vs-pointer-5.c 131 B
    #include <stdio.h>
    
    int main (void)
    {
      char *h = "Hello!\n";
      int i = 0;
      while (h[i])
        printf ("%c", h[i++]);
      return 0;
    }