Home Tags Floating point

Tag: floating point

A Peek Into GNU debugger GDB

0
This tutorial is aimed towards those who want to learn how to use the GNU debugger GDB in Linux. The tutorial assumes that the...

CodeSport

0
Over the next few columns, we will continue our discussion on data storage systems and look at how they are evolving to cater to...

Making Your Code Walk: GNU Autotools

0
Have you ever wondered why so many files are shipped in a software source tarball for Linux? Or dreamt of making your own newly...

Joy of Programming: Understanding Bit-fields in C

2
One important feature that distinguishes C as a systems programming language is its support for bit-fields. Let us explore this feature in this column. In...

Joy of Programming: Penny Wise and Pound Foolish!

1
We often try to use a smaller data type to save space. Though it looks like clever programming, it can cause nasty bugs. Let’s...