#c
Read more stories on Hashnode
Articles with this tag
INTRODUCTION A linked list is a linear data structure that includes a series of connected nodes, each node stores the data and address of the next...
INTRODUCTION A variadic function is a function that accepts an infinite number of arguments e.g printf() that can accept as many arguments as...
INTRODUCTION TO FUNCTION POINTERS Function pointers in C are variables that can store the memory address of functions and can be used in a program to...
INTRODUCTION A structure is a user-defined datatype that groups related variables of different data types. It is a collection of variables under a...
Memory Allocation is the portion of memory reserved by the computer for use in a computer program. Variables declared are stored in the static memory...