int summa(int,int); int main(void) { int i,j; i = 4; j = 3; i = summa(i,j); return i; }