Skip to main content

Posts

Showing posts from 2015

How to write a simple RPC Programme?

Writing an RPC (Remote Procedure Call) program is not so hard as it sounds. If you are using Linux OS, it is really easy to do it. Look at the screenshots provided and follow the steps, then finally you will have a working RPC program. Here we will look into creating a simple Calculato r program. Read how to do it.

How to write your own Malloc and Free using C?

                             Here I wish to explain the code written in C language for the implementation of malloc() and free() in Dynamic memory allocation. It is a simple approach which contrasts itself from other methods of implementation which are quite hard to understand.  ----------->   Read blog page