본문내용
main ()
{ float Second(float a[4]);
float value[4] = {1.0 2.0, -1.0, 4.0};
printf(\"%f\\n\", Second(value,??);
}
float Second(float a[],??)
{float = max; max=a[??]; return(max)}
6. 아래 코드에서 ?? 부분을 제대로 수정하라. (10)
void fun(int, int, int ??, int ??);
main() {int x=10, y=5, x_plus_y, x_minus_y;
fun(x, y, ??, ??);
}
void fun(??1, ??2, ??3, ??4) // ??1 = x, ??2 = y
{??3 = ??1 + ??2;
??4 = ??1 - ??2; }
{ float Second(float a[4]);
float value[4] = {1.0 2.0, -1.0, 4.0};
printf(\"%f\\n\", Second(value,??);
}
float Second(float a[],??)
{float = max; max=a[??]; return(max)}
6. 아래 코드에서 ?? 부분을 제대로 수정하라. (10)
void fun(int, int, int ??, int ??);
main() {int x=10, y=5, x_plus_y, x_minus_y;
fun(x, y, ??, ??);
}
void fun(??1, ??2, ??3, ??4) // ??1 = x, ??2 = y
{??3 = ??1 + ??2;
??4 = ??1 - ??2; }
소개글