Files
CITISE1/IUT/Info1/TD/Exercices/pointeur1/fonction.cpp
2026-04-08 20:11:20 +02:00

12 lines
206 B
C++

#include <iostream>
#include "fonction.h"
using namespace std;
void Affiche_réels(const float* p_f, unsigned int nb) {
for (unsigned int i = 0; i < nb; i++) {
cout << *p_f << endl;
};
}