From: Jesus Positorio 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 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 16 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Use a calculator :) C funcion: float sqrt(float *); usage: #include void main(void) { float a,b; a=2; b=sqrt(b); } pd: buy a book on C. Or use the help option. Sunserver.