f( int a, int b )

{

    ...

}


int a = 5;

f( ++a, a++ );


이때 f에서 a와 b의 값은?

C언어 기준.