Write the C code for a function definition (named bar) that takes two int (value) parameters - named x and y - and returns their sum via a third int pointer (reference) parameter.

Your Answer:

int bar( int* x, int* y,){

int* z = *x + *y;

return *z;

}


외국에서 인강으로 배우고있는데 이거 맞음?

답이 안나와

아닌거같은데