by emertxe_admin | May 19, 2015 | Student Projects, Technology, Blog, C programming, Programming, Emertxe
How many programming languages should I learn? – This is a classic question we get all the times from our students. Sometimes even working professionals ask the same. Simple answer from us – Why are you so much bothered about it? The world is moving to...
by emertxe_admin | Apr 8, 2015 | C programming, Embedded, Blog
Sizeof operator in C: In C programming, the unary operator sizeof() returns the size of its operand in bytes. The sizeof() operator is discussed in detail in this article, along with illustrative examples of code. Sizeof() is used extensively in the C programming...
by emertxe_admin | Jan 6, 2015 | Programming, Open Source, Blog, OSFY, C programming, Embedded
Volatile Qualifier in C language, which is applied to a variable when it is declared. It is used extensively while writing programs for embedded systems, especially when dealing with hardware. Most often, Volatile variable usage stumps an embedded system programmer...
by emertxe_admin | Dec 1, 2014 | Embedded, Programming, Emertxe, Blog, OSFY, C programming, Debugging
As an Embedded C programmer, understanding pointers is very important. Given the resource constraints in embedded system, one has to ensure memory is utilized in most optimized fashion, where pointers come in handy. While using pointers programmers often come across...