# C/C++ Terminologys

## cpp

c plus plus

## .h

.header

## malloc

memory allocation

> A subroutine in the C programming language's standard library for performing dynamic **memory allocation**.

## calloc

contiguous allocation

> The malloc\(\) function allocates a single block of memory. Whereas, calloc\(\) allocates multiple blocks of memory and initializes them to zero.

