Skip to content
Snippets Groups Projects
Select Git revision
  • aca440b467ddd0b38cf2cd8b50eb6eb30ed17e1c
  • 2023ss default protected
  • 2022ss
  • 2021ss
  • 2020ss
  • 2019ss
  • 2018ss
  • 2017ss
  • 2016ss
  • 2015ss
  • 2014ss
11 results

hello-02.c

Blame
  • Forked from Peter Gerwinski / bs
    79 commits behind the upstream repository.
    hello-02.c 122 B
    #include <stdio.h>
    
    int main (void)
    {
      char *hello = "Hello!";
      hello[1] = 'a';
      printf ("%s\n", hello);
      return 0;
    }