This installment of Embed with Elliot begins with a crazy rant. If you want to read the next couple of paragraphs out loud to yourself with something like an American-accented Dave-Jones-of-EEVBlog ...
What are cryptographic hash functions? What are cryptographic hash functions? A cryptographic hash function is a mathematical algorithm that takes a data input, often referred to as a message, and ...
Embedded C developers shy away from C++ out of concern for performance. The class construct is one of their main concerns. My previous article Code Craft – Embedding C++: Classes explored whether ...
From our study of C++, it should be clear that, unlike class encapsulation and single inheritance, which were essentially free in C, polymorphism in C involves some complexity and overhead. In the ...
In my last article I wrote about accessing a PostgreSQL database in C/C++. In this article, I'm going to discuss performing the same functions in C against an SQLite database. Unlike Postgresql and ...
I know many other languages use the eval() function to take a string argument and evaluate it as part of the source code (so you can run a function or assign a variable etc). I've seen it in PHP, ...