The prawn help changes the program error, thanked!
#include<stdio.h> #define Row 3 #define Col 4 int i, j; void Output (int x, int y, int ** R) { for (i=0; i<x; i++) { for (j=0; j<y; j++) printf (“%d”, R[i][j]); printf (“\ n”); } } void main() { int RA[Row][Col] = {‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, …