Skip to content
Snippets Groups Projects
Select Git revision
  • e5a55ae5d895b36506b339f1f24833424616305f
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

sum-07.c

Blame
  • Forked from Peter Gerwinski / hp
    48 commits behind the upstream repository.
    sum-07.c 95 B
    #include <stdio.h>
    
    int main (void)
    {
      int i = 65536;
      printf ("%d\n", i * i);
      return 0;
    }