2021-10-21 09:49:39 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main () {
|
|
|
|
|
|
|
|
float a = 1.;
|
|
|
|
int b = 1 ;
|
|
|
|
|
2021-10-21 10:47:20 +00:00
|
|
|
FILE *point = fopen("data.dat","w"); // ouverture file "w" ecriture
|
2021-10-21 09:49:39 +00:00
|
|
|
|
2021-10-21 10:47:20 +00:00
|
|
|
fprintf(point,"%f %d \n",a,b); // ecriure file
|
2021-10-21 09:49:39 +00:00
|
|
|
|
2021-10-21 10:47:20 +00:00
|
|
|
fclose(point); // fermeture
|
2021-10-21 09:49:39 +00:00
|
|
|
|
|
|
|
}
|