/* * ass1.c Generate assembly code of x86-32 and comment */ #include #define ORD 20 void cs(int n, int data[][ORD]); void po(int n, int data[][ORD], int type, int ind); int main() { int n, i, j ; int data[ORD][ORD]; printf("Enter the order of the square matrix: "); scanf("%d", &n); printf("Enter the matrix in row-major order:\n"); for(i=0; i