/tmp/ccZLREYg.o(.text+0x1e): In function `main': : undefined reference to `sqrt'
Hallo Falk,
das übersetzen klappt bei mir mit:
gcc -o Wurzel Wurzel.c -lm
#include <stdio.h> #include "math.h"
int main(int argc, char** argv) { int zahl = 0; if(argc == 2) { sscanf(argv[1],"%ld",&zahl); printf("\n Wurzel von %s ist: %lf \n\n",argv[1],sqrt(zahl)); } return 0; }
Viele Grüße - Dirk