1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> static int foo(int x, int y) { return 42*x - 69*y; } int main() { int z = foo(10, 1); printf("%d\n", z); return 0; }
Generated with cgit - Back to sebastiano.tronto.net