#include <stdio.h>
#define MAX 1000
void le_matriz(double A[][MAX], int n, int k){
int i, j;
for(i = 0; i < n; i++){
for(j = 0; j < k; j++){
scanf("%lf", &A[i][j]);
}
}
}
int main() {
printf("Hello world!\n");
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: