sebastiano.tronto.net

Source files and build scripts for my personal website
git clone https://git.tronto.net/sebastiano.tronto.net
Download | Log | Files | Refs | README

main2.c (135B)


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