#include <stdio.h>
int main() {
// declare an array
int a[2][2];
// perform a few operations
a[0][0] = 10;
a[0][1] = a[0][0] * 10;
a[1][0] = a[0][1] / 5;
a[1][1] = a[0][1] + a[1][0];
// print the array
printf("%d %d\n", a[0][0], a[0][1]);
printf("%d %d\n", a[1][0], a[1][1]);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: