The file handling in C can be broadly divided into two types High level low level High level file handling is managed by library functions while low level file handling is done by system calls. The …
Category: C Programming
Swapping means interchanging. Let’s consider two variables x=10 & y=20. After swapping it will become x=20 and y=10.Here x & y value’s are interchanged. There are various methods to swap two numbers. Here we …
This post covers dynamic memory allocation in C programming. As a part of this we are going to discuss the below things in dynamic memory allocation in C in this post. Why dynamic memory allocation in …