H
Hi Lem endlich geht ALLES ! Ich habe deinen Code noch etwas ergrössert:
#include <stdlib.h>
#include <stdio.h>
void save(int a, int b, int c, int d, int e, int f,const char* name)
{
FILE *fp;
if((fp=fopen(name, "wb"))==NULL)
exit(1);
fprintf(fp,"x1=%d%c%c",a,13,10);
fprintf(fp,"y1=%d%c%c",b,13,10);
fprintf(fp,"x2=%d%c%c",c,13,10);
fprintf(fp,"y2=%d%c%c",d,13,10);
fprintf(fp,"p=%d%c%c",e,13,10);
fprintf(fp,"q=%d",f );
fclose(fp);
}
void load(int *a, int *b,int *c, int *d,int *e, int *f, const char *name)
{
FILE *fp;
if((fp=fopen(name, "rb"))==NULL)
exit(1);
fseek(fp,3L,0);
fscanf(fp,"%d",a);
fseek(fp,5L,1);
fscanf(fp,"%d",b);
fseek(fp,5L,1);
fscanf(fp,"%d",c);
fseek(fp,5L,1);
fscanf(fp,"%d",d);
fseek(fp,4L,1);
fscanf(fp,"%d",e);
fseek(fp,4L,1);
fscanf(fp,"%d",f);
fclose(fp);
}
Auserdem habe ich ihn zu einer Header-Datei gemacht namens: Lem.h
Vielen dank für deine grosse Hielfe! Ich stehe tief in deiner Schuld!
MFG H@ckepeter
PS.: Las dich dich doch hier Registrieren !