This commit is contained in:
parent
ee80bb109d
commit
d1b5108653
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
1.000000 1
|
|
@ -0,0 +1,16 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main () {
|
||||
|
||||
float a = 1.;
|
||||
int b = 1 ;
|
||||
|
||||
FILE *point = fopen("data.dat","r");
|
||||
|
||||
fscanf(point,"%f %d \n",&a,&b);
|
||||
|
||||
printf("%f %d \n",a,b);
|
||||
|
||||
fclose(point);
|
||||
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main () {
|
||||
|
||||
float a = 1.;
|
||||
int b = 1 ;
|
||||
|
||||
FILE *point = fopen("data.dat","w");
|
||||
|
||||
fprintf(point,"%f %d \n",a,b);
|
||||
|
||||
fclose(point);
|
||||
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#define N 5
|
||||
|
||||
|
||||
|
||||
int main () {
|
||||
|
||||
float A[N][N] = {0.}; // Initialisation par des 0
|
||||
|
||||
int i , j;
|
||||
for(i=0;i<N;i=i+1)
|
||||
{
|
||||
for (j=0;j<N;j++)
|
||||
{
|
||||
printf("%f ",A[i][j]);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
return 1;
|
||||
|
||||
}
|
Loading…
Reference in New Issue