/* this is a test by Lin Jensen */ int sum2 (x,y) { return x+y; } int main() { int a; a = sum2(3,4); printf ("Hello, there, %d\n", a); return 0; }