#include void hello_from_c() { puts("Hello from C!"); } int add_two_numbers(int a, int b) { return a + b; }