main()

{

int a=10, b=3;

func(a, b);

printf("a: %d , b: %d \n" , a, b);

}



void func(int a, int b)

{

a=a+b

b=b+a

}



여기서 a b 값이 어떻게 나옴?