Post this Blog to facebook Add this Blog to del.icio.us! Digg this Blog furl this Blog Add this Blog to Reddit Add this Blog to Technorati Add this Blog to Newsvine Add this Blog to Windows Live Add this Blog to Yahoo Add this Blog to StumbleUpon Add this Blog to BlinkLists Add this Blog to Spurl Add this Blog to Google Add this Blog to Ask Add this Blog to Squidoo

Jul 7, 2006

Simplified C standard IO

For those C programmers still a little daunted by the prospect of using the full power of the stdio.h library, I've broken it down into it's self-similar parts. That way you only have to deal with one set of things to remember.

The wonderful thing about C is that it tends to treat streams in the same way. So a call to, for example, printf, sprintf or fprintf look largely the same.

There are a few caveats, and traps for the unwary, but on the whole you need to remember far less than you might at first think. Of course, there are also some really powerful functions that can be applied too; but the stdio.h tutorial presented here is a great place to start. Have fun!

The complete article/tutorial can be found at : C I/O with stdio.h.