dieser code:
C
#include <stdio.h>
#include <math.h>
int main() {
double b;
double a;
b=2;
a=exp(b);
printf("%f \n",a);
return 0;
}
Alles anzeigen
liefert folgende Fehler Meldung:
test.c:(.text+0x1c): undefined reference to `exp'
compilieren tue ich mit: gcc test.c -o test
folgender code:
C
#include <stdio.h>
#include <math.h>
int main() {
double b;
double a;
b=2;
a=exp(4);
printf("%f \n",a);
return 0;
}
Alles anzeigen
liefert keine Fehlermeldung!
Bin über alle Lösungsvorschläge dankbar!