How to use #define Macros 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
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
Did you know each ESP8266 allows you to partition the system flash such that you can use it to store both code and support a… Read More »The ESP8266 SPIFFS File System – Complete Beginner Guide
ESP8266 SPIFFS sketch data upload tool allows us to upload files to the NodeMCU or ESP8266 flash memory. This filing system can be used to… Read More »Upload Files to ESP8266 SPIFFS
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
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