You are on page 1of 1

#i

b = fun() + a;

int fun(){
return a + 10;
}
int main(){

int a, b;
b = a + fun();
priprintf("With the function call on the left, ");
printf(" b is: %d\n", b);
return 0;
}ntf("With the finction call on the right, ");
prnclude <stdio.h>

int fun();
intf(" b is : %d\n", b);
a = 10;

You might also like