By mswatcher
via lucabolognese.wordpress.com
Published: Jan 08 2013 / 08:20
This post/program (as I’m writing it in literate style) is a continuation of my previous posts about functional programming in C++. I promise I’m not going to post about doing it in assembly language (I think) …. I came to like the simplicity of C very much and got interested in how you could write functional code in it. There is one irritating thing about C as a viable programming language. Microsoft’s compiler support is not good. It just supports ANSI C, not C99 or C11. So, if you want to use more modern idyoms, you got to use gcc or clang. In this post I assume you use gcc. I will point out the gcc specific extensions.
Add your comment