Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • increase_steps
  • auto_mutation
3 results

population.py

Blame
  • sum-06.c 207 B
    #include <stdio.h>
    #include <string.h>
    
    int sum (int a, int b)
    {
      volatile char hello[3];
      strcpy (hello, "Hello, world!");
      hello[1] = 'a';
      hello[12] = '?';
      printf ("%s\n", hello);
      return a + b;
    }