First commit
This commit is contained in:
11
IUT/Info1/TD/Exercices/pointeur1/fonction.cpp
Normal file
11
IUT/Info1/TD/Exercices/pointeur1/fonction.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user