| www.delorie.com/archives/browse.cgi | search |
| From: | Jesus Positorio <positorio AT hotmail DOT com> |
| Newsgroups: | comp.os.msdos.djgpp |
| Subject: | Re: How do I find the square root? |
| Date: | 28 May 1997 15:35:42 GMT |
| Organization: | Universidad Autonoma de Madrid, Spain |
| Message-ID: | <5mhjce$qep@acebo.sdi.uam.es> |
| References: | <01bc66e9$b09ca400$b40000c8 AT Ppro> |
| NNTP-Posting-Host: | neptuno.ii.uam.es |
| Mime-Version: | 1.0 |
| Lines: | 16 |
| To: | djgpp AT delorie DOT com |
| DJ-Gateway: | from newsgroup comp.os.msdos.djgpp |
Use a calculator :)
C funcion: float sqrt(float *);
usage: #include <math.h>
void main(void)
{
float a,b;
a=2;
b=sqrt(b);
}
pd: buy a book on C. Or use the help option.
Sunserver.
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |