Bitwise Operators in C – Common Mistakes and How to Avoid Them
Table of Contents Add a header to begin generating the table of contents An operator that performs operation on a “bit-level” is said to be bit-wise operator. Generally, bitwise operators in C operate on a single bit at a time. Though it operates on a...
Read more
How Many Programming Languages Should I Learn?
Table of Contents Add a header to begin generating the table of contents How Many Programming Languages Should I Learn? 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...
Read more
Sizeof Operator in C – A Practical Tutorial
Table of Contents Add a header to begin generating the table of contents 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...
Read more
Dangling pointers in C : A practical tutorial
Introduction Dangling pointers in C – Usage and how to prevent them. Great guide for C newbies and Embedded systems programmers. Tutorial with practical examples. Dangling pointers are those that do not point to valid objects. Pointers are like sharp knives that have tremendous power in...
Read more
Dangling Pointers in C Programming – Be Strictly Avoided
Table of Contents Add a header to begin generating the table of contents Dangling Pointers : Be “STRICTLY” Avoided ! Pointers are like sharp knives in C-Programming which are having tremendous power. Pointers, when used properly reduces the complexity of the programs to a great extent. But, on...
Read more