This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# "Comb Sort in MIPS" | |
# Author: Aman Nidhi | |
# Year : 2016 | |
# | |
# | |
.data | |
space: .asciiz " " # a space string. | |
newline: .asciiz "\n" # a newline string. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define linha 6 | |
#define coluna 6 | |
int printMatrixInvertida(int mat[linha][coluna]){ | |