How to use #Ifndef directive in C program ?
#ifndef ( if not defined ) directive is used in C language for conditional execution of certain … Read more
#ifndef ( if not defined ) directive is used in C language for conditional execution of certain … Read more
When we want to make a compile time decisions to enable some code and disable other, #ifdef … Read more
This programs shows a simple way to implement singly link list ( Singly link list is the … Read more
Function in C programming is a group of statements which are separated from main task for the … Read more
This code is tested on Ubuntu . You may need to twick the script if you use a … Read more
In this post, we use ARM are reference architecture for writing the assembly code but the basic … Read more
In continuation of demonstrating simple implementation of data structures, as we shown in our last post “How … Read more
atexit – register a function to be called at normal process termination The atexit() function registers the … Read more
Electric Fence helps you detect two common programming bugs: software that overruns the boundaries of a malloc() memory … Read more
Following program prints the hexadecimal values of all the characters in any string. Currently we have used … Read more