C/pow: Różnice pomiędzy wersjami

Usunięta treść Dodana treść
m // nowy
Nie podano opisu zmian
Linia 45:
 
=== Przykład użycia ===
<sourcesyntaxhighlight lang="c">
#include<math.h>
 
Linia 55:
temp= pow(a,2) + pow(b,2);
c= sqrt(temp);
</syntaxhighlight>
</source>
 
 
 
<sourcesyntaxhighlight lang="c">
// gcc c.c -lm
#include <stdio.h>
Linia 72:
return 0;
}
</syntaxhighlight>
</source>