Storage classes in C
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
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
Let’s see about setting up NodeMCU with Arduino IDE . This is the first part of a tutorial series on NodeMCU. In this post I’ll show you how to install the NodeMCU and ESP boards.
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 Loops 1. C program to print all natural numbers from 1 to n using while loop: #include <stdio.h> int main() { int… Read More »C programs on Loops
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
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
In the previous post we discussed about structures – What structures are and how they can be useful. We also discussed how to declare and… Read More »Memory Layout of a Structure