Created
December 10, 2022 14:30
-
-
Save pvpassos/b0741bf0a8cf620eea4caa8b2575d293 to your computer and use it in GitHub Desktop.
HEADER
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
| // apenas os "protótipos" das funções | |
| #ifndef MATRIZ_TOTAL_MAIS_NOVA | |
| #define MATRIZ_TOTAL_MAIS_NOVA | |
| void leitura_txt(int *linhas, int *colunas, float matriz[][20]); | |
| void imprime(int *linhas, int *colunas, float matriz[][20]); | |
| void crescente(); | |
| void decrescente(); | |
| void maior(); | |
| void menor(); | |
| void repetidos(); | |
| void sair(); | |
| #endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment