Structures and Unions
Structure stores the different types of elements i.e heterogeneous elements. The struct keyword is used to define structure. Syntax...
Naturally Curious
Structure stores the different types of elements i.e heterogeneous elements. The struct keyword is used to define structure. Syntax...
Strings in C Video Link In C, a string can be referred to either using a character pointer or as a character array. Strings as character...
Difference between Call by Value and Call by Reference Functions can be invoked in two ways: Call by Value or Call by Reference. These...
Decision Making in C / C++ (if , if..else, Nested if, if-else-if ) There come situations in real life when we need to make some decisions...
When we say Input, it means to feed some data into a program. An input can be given in the form of a file or from the command line. C...
An operator is a symbol that tells the compiler to perform specific mathematical or logical functions. C language is rich in built-in...
What is a Variable? A variable is an identifier which is used to store some value. Constants can never change at the time of execution....
Basic Input and Output in C: please find the below link: https://www.tutorialspoint.com/cprogramming/c_input_output.htm...
Type Conversion in C A type cast is basically a conversion from one type to another. There are two types of type conversion: Implicit...
The symbols which are used to perform logical and mathematical operations in a C program are called C operators. These C operators join...
C – DATA TYPES: There are four data types in C language. They are, Basic data types: int, char, float, double Enumeration data type:...
#include<stdio.h> #include<stdlib.h> int MAX=0;//Max elements in the queue typedef struct mynode { char info; int pri; struct mynode...
#include<stdio.h> int MAX=0; int front=0; int rear=-1; int queue[100]; //Empty int isEmpty() { if(front==0 && rear==-1) return 1;...
#include<stdio.h> int MAX=0; int front=-1; int rear=-1; int queue[100]; //Empty int isEmpty() { if(rear==-1) return 1; else return...
#include<stdio.h> typedef struct mynode { int coeff,expo; struct mynode *Link; }Node; Node *start=NULL,*start2=NULL; //Display Function...
#include<stdio.h> typedef struct mynode { int info; struct mynode *Link; }Node; Node *start=NULL,*start2=NULL; //Display Function void...
Circular Linked List- Doubly Circular Doubly Linked List has properties of both doubly linked list and circular linked list in which two...
Circular linked list is a linked list where all nodes are connected to form a circle. There is no NULL at the end. A circular linked...
Doubly linked list is a type of linked list in which each node apart from storing its data has two links. The first link points to the ...
/*How to Merge two Sorted Linked List using C*/ #include<stdio.h> //List1 typedef struct mynode1 { int info; struct mynode1 *Link;...
JIS College of Engineering, Block-A, Phase-III, Kalyani, Nadia, West Bengal, India, Pin-741235
9874752090