How to Add Featured Image in WordPress RSS Feed ?

One of the first things I do at whatever point I introduce a new form of WordPress is to empower emphasized pictures to appear in my RSS channel.  Add Featured Image in WordPress RSS Feed , While some individuals may think RSS channels are dead, they are still utilized by many administrations. Take after the… Continue reading How to Add Featured Image in WordPress RSS Feed ?

New Water Resistant Material That Bounce Water Back

Scientists at the University of Rochester have created a new laser-scratching innovation that makes a super hydrophobic sheet of material. The material is hydrophobic to the point that water drops bounce off until they tumble off the edge.the special thing about the new innovation is that its significantly more tricky than Teflon, utilized normal hydrophobic material… Continue reading New Water Resistant Material That Bounce Water Back

How to Find Lost Android Smartphone IMEI Number

For every phone there is a IMEI (International Mobile Station Equipment Identity) number which is a unique code for every phone. It is a kind of unique product ID. It is a 15 digit number. Based on this number, you can check all information about the device, eg brand or model etc.  To check the… Continue reading How to Find Lost Android Smartphone IMEI Number

What is Android Rooting? Is it Safe?

What Is Android Rooting? You must have heard about iPhone jailbreak. Rooting is jail-breaking for Androids which allows users to do anything they want to do into a phone’s sub-system. It allow users to access the entire OS and be able to customize just anything the Device. If you gain root access, users can bypass… Continue reading What is Android Rooting? Is it Safe?

C Program to Implement Binary Search Tree Traversal ,Delete and Insert Nodes

PROGRAM TO PERFORM BASIC OPERATIONS ON A BINARY SEARCH TREE //PROGRAM TO PERFORM BASIC OPERATIONS ON A BINARY SEARCH TREE #include<stdio.h> #include<conio.h> struct tree { struct tree *left; int info; struct tree *right; }; void insert(struct tree **ptr,int item) { if(*ptr==NULL) { *ptr=(struct tree *)malloc(sizeof(struct tree)); (*ptr)->left=(*ptr)->right=NULL; (*ptr)->info=item; return; } else { if(item<(*ptr)->info) { insert(&((*ptr)->left),item);… Continue reading C Program to Implement Binary Search Tree Traversal ,Delete and Insert Nodes