MS VS 2003: Floating point not loaded
-
In folgendem Programm bekomme ich die Fehlermeldung "Floating Point not loaded" was laut Google folgendes bedeutet:
"Floating point not loaded" is Microsoft C's run-time message when the
code requires a numeric coprocessor but your computer doesn't have one
installed. If the program is yours, relink it using the xLIBCE or xLIBCA
library (where x is the memory model).Was dass jetzt ehißten soll ist mir nicht ganz klar, was aber viel komischer ist, ist die Tatsache das der Fehler nu auftritt wenn ih am Ende die Zeile mit dem printf lösche...
struct PERSON { float TelNr1; float TelNr2; float TelNr3; }; int _tmain(int argc, _TCHAR* argv[]) { PERSON pers; FILE * fp; fp = fopen("Person.dat","r"); fscanf(fp,"%G %G %G",&pers.TelNr1,&pers.TelNr2,&pers.TelNr3); //printf("%G\n%G\n%G\n",pers.TelNr1,pers.TelNr2,pers.TelNr3); fclose(fp); system("PAUSE"); return 0; }
-
weiß heute vielleicht jemand Rat?