From: Chris Croughton Newsgroups: comp.os.msdos.djgpp Subject: Re: gmp ?? Date: Thu, 15 Jan 1998 12:07:00 +0100 Message-ID: <34BDEDD4.3F54@amc.de> References: <69j3n4$s3i$1 AT titania DOT telstra DOT net DOT nz> NNTP-Posting-Host: bob.bob.bofh.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 17 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Richard Chappell wrote: > > Whats GMP ? Would it be any use to a beginner?? The GNU Multi-Precision library. It provides functions for multi-precision (like 1000 bit and more) integers, rationals (fractions) and floating point numbers. However, the functions have to be called by name, not by normal arithmetic operators, which makes it somewhat clumsy to use. I wouldn't recommend it for beginners to C - as an 'expert' (15 years+ programming in C) I found it less than intuitive. It's good for people who know exactly what they want to do and what arithmetic they want to perform, like for cryptographic applications. Chris C