Если массив статический, то можно так:
#include
#include
double LOG_b_A(double a, double b)
{
return log(b)/log(a);
}
void in_mass(int* mas, int n, int m)
{
for(int i=0; i for(int j=0; j }
}
void out_mass(int* mas, int n, int m)
{
printf("Your massive :\n");
for(int i=0; i for(int j=0; j printf("\n");
}
}
int main (void)
{
double x,y,z;
const int n = 2;
const int m = 4;
int a[n][m];
scanf("%lf %lf", &x ,&y);
z=LOG_b_A(x,y);
printf("z=%7.3lf \n",z);
in_mass(a,n,m);
out_mass(a,n,m);
return 0;
}
Пример (для массива 2*4):
7 5
45
12
65
30
78
40
89
43
z= 0.827
Your massive :
45 12 65 30
78 40 89 43