C language

Functions to manage heap memory

The functions to manage heap memory which are included in the directory  #include <stdlib.h> are:  malloc(): void * malloc (size_t size); As we see from the prototype of the malloc function that we have to pass the number of bytes required as parameter to the malloc function and the function returns the starting address of the […]

C language

Program Memory – Introduction

This article is very important for the person who wants to understand c language. Anyone who is going for any interview for a good software company must read the following article as the questions asked in the tests and interviews need the candidate to be clear in the following concepts. This article would ensure that […]