13 lines
349 B
C
13 lines
349 B
C
#include <stdio.h>
|
|
#ifndef F_EXOS_H
|
|
#define F_EXOS_H
|
|
|
|
int sommeNombresPairs(int n);
|
|
void afficherTriangle(int n);
|
|
int valeurMax(int tab[], int n);
|
|
void additionMatrice(int matrice1[3][3], int matrice2[3][3], int resultat[3][3]);
|
|
void afficherMatrice(int matrice[3][3]);
|
|
void inverserChaine(char chaine[]);
|
|
int compterVoyelles(char chaine[]);
|
|
#endif
|