Loops in C
You may encounter situations, when a block of code needs to be executed several number of times. In general, statements are executed sequentially: The first… Read More »Loops in C
You may encounter situations, when a block of code needs to be executed several number of times. In general, statements are executed sequentially: The first… Read More »Loops in C
The fight on C vs Embedded C has been going on for quite some time. First off—Yes, there really IS something officially called “Embedded C”,… Read More »C vs Embedded 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++
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
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
Practice programs on Switch case 1. C program to find all roots of a quadratic equation using switch case: #include <stdio.h> #include <math.h> /* Used… Read More »C programs on Switch-case
Practice Programs on Arrays 1. Merge two arrays of same size sorted in descending order: #include <stdio.h> void main() { int arr1[100], arr2[100], arr3[200]; int… Read More »C programs on Arrays
Programming Practices for If-Else 1. C program to find the greatest number among three numbers : *************************************************************** 2.C program to find out whether a given… Read More »C programs for If-Else