Common Logical Questions Asked in a Technical Interview
Well, if you are going for a technical interview in any programming language, in any stream, irrespective of your expertise and... more »
Tweet 0 Comments Save Tags: c-and-cpp , humor , methodology , opinion
Roundup of accepted C++2014 language & library additions
A number of changes have just been accepted into the draft 2014 C++ standard update; this article gives an overview of the changes and their benefits.
Tweet 0 Comments Save Tags: c-and-cpp
Unreal Engine in JavaScript/HTML5 – Citadel demo
Mozilla is working on a new way to bring content to the Web and have it run at near native speeds. Using Emscripten to cross-compile C... more »
Tweet 0 Comments Save Tags: c-and-cpp , open source
Understand how C stores variables in memory
In embedded designs, memory, especially RAM, is a precious resource. Understanding how C allocates variables in memory is crucial... more »
Tweet 0 Comments Save Tags: c-and-cpp , how-to , methodology , tools
Serializing in C++ leveraging template metaprogramming
An approach to object serialization using C++ typing information. When the type of an object is known both at sender and receiver side... more »
Tweet 0 Comments Save Tags: c-and-cpp , methodology , research
Curried Functions in C
A curried function is a function which takes only one parameter and returns a function defined according to that parameter. This is a... more »
Tweet 0 Comments Save Tags: c-and-cpp
Difference between generics in C#, Java and C++
Article describing the difference between generics in C#, generics in Java and templates in C++.
Tweet 0 Comments Save Tags: .net , c-and-cpp , java
Circumventing C#'s Type Constraint Limitations
It's well known that C# doesn't permit certain types to appear as constraints, like System.Enum or System.Delegate, and that C# further... more »
Tweet 0 Comments Save Tags: .net , c-and-cpp , how-to , methodology
Binding C++ with Lua, Squirrel, Game Monkey and Ocaml
This isn’t anything new I did recently but I thought it’s worth putting up on my blog anyway. I was once interested how easy it is to... more »
Tweet 0 Comments Save Tags: c-and-cpp , frameworks , other languages
Objective-C Literals
Three new features were introduced into clang at the same time: NSNumber Literals provide a syntax for creating NSNumber from scalar... more »
Tweet 0 Comments Save Tags: apple , c-and-cpp , mobile , reviews