Mahalaya
Mahalaya marks the start of the ' Devipaksha ' and the end of the ' Pitri-paksha '. The traditional six day countdown to Mahasaptami…
The Jadavpur University campus continued to simmer on Thursday, a day after a series of protests, as students of all departments decided to boycott c…
Algorithm: hs( a[], n) { heap(a,n); for (i = n to 1) { temp<-a[1]; a[1]<-a[i]; a[i]<-temp; downheap(a,1,i-1); } …
#include <stdio.h> #define newnode (struct node*)malloc(sizeof(struct node)) typedef struct node { int data ; struct node * next ; } no…
/*ITERATIVE*/ //Calling the Header File. #include<iostream> //Declaring the main function int main () { //Tells the compiler that we…
#include<conio.h> #include<stdio.h> void main () { float sv , pv , dep ; int yos ; clrscr (); printf ( "Enter the purchase va…
#include<stdio.h> int main (){ long int decimalNumber , remainder , quotient ; int octalNumber [ 100 ], i = 1 , j ; printf ( "Enter…
#include<stdio.h> #include<conio.h> #include<math.h> void main () { long int num ; clrscr (); printf ( "Enter the decima…
#include<stdio.h> int main (){ long int decimalNumber , remainder , quotient ; int binaryNumber [ 100 ], i = 1 , j ; printf ( "Ente…
#include <stdio.h> #include <string.h> int main () { char a [ 100 ], b [ 100 ]; printf ( "Enter the first string \n " ); …