Showing posts from November, 2019

binary search tree program | preorder | inorder | postrorder traversal | data structure using c

#include <stdio.h> struct tnode { int data; struct tnode *righ…

queue implementation using arrays

#include<conio.h> #include<stdio.h> #define  MAX 10 int q[MAX],i; i…

change your windows 10 fonts code

HOW TO CHANGE WINDOWS 10 FONT STEP 1: Open control pan…

how to make your pc to speak using these codes

Set Sapi = Wscript.CreateObject("SAPI.SpVoice") dim str if hour(time…

program to perform operation on stack using c language

// stack program  #include<conio.h> #include<stdio.h> #defin…

That is All