15 lines
157 B
C
15 lines
157 B
C
|
#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);
|
||
|
|
||
|
}
|