Functions in C
In this post we will explore Functions in C. We will look at what functions are and how they make our lives easy. Let’s say… Read More »Functions in C
In this post we will explore Functions in C. We will look at what functions are and how they make our lives easy. Let’s say… Read More »Functions in C
The proper use of C’s volatile keyword is poorly understood by many programmers. This is not surprising, as most C texts dismiss volatile in a… Read More »Understand the Volatile Keyword in C/C++
What are pointers really? How do they work? And most importantly how are they useful?! In C programming, pointers point to locations. Locations in memory.… Read More »Pointers in C/C++
Variables are an essential aspect of any programming language, including C. They allow us to store and manipulate data within our programs. In this post,… Read More »Variables in C and Their Relation to Memory Locations
Every once in a while, we commit some mistakes and often lose a lot of time and energy correcting them. This is true for programming… Read More »Most common pitfalls in C Programming Language and how to avoid them
To completely define a variable, not only the ‘type’ of variable, the ‘storage class’ of the variable is also important. In other words, not only… Read More »Storage classes in C
Macros are a type of pre-processor. Pre-processors begin with the “#” symbol and are also called directives. They are of great convenience to the programmers… Read More »How to use #define Macros in C
Questionnaire for C programming Programs based on If-Else C program to find the greatest number among three numbers. C program to find out whether a… Read More »Practice programs for C language
Practice programs on Pointers 1. Program in C to demonstrate how to handle the pointers in the program: #include <stdio.h> int main() { int* ab;… Read More »C programs on Pointers
Practice programs on Structures 1. Program to Store Information of a Student Using Structure: #include <stdio.h> struct student { char name[50]; int roll; float marks;… Read More »C programs on Structures