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

OnePlus One Android 5.0 Lollipop Alpha

OnePlus One has a nice little surprise in store for its customers, by providing alpha ROM which android 5.0 Version for there customers. The firm announced Wednesday that customers can now download and install an alpha version of Android 5.0 Lollipop to their OnePlus One phones. The company said it’s trying to stick to the AOSP Lollipop… Continue reading OnePlus One Android 5.0 Lollipop Alpha

Windows 10 may Coming with New “Spartan”Browser

windows-10-Logo

Windows 10 is going to be one of the biggest software updates in Microsoft history, and it looks like could be coming with brand new browser for the new operating system. The company is reportedly working on a secret project, codenamed “Spartan,” which is going to look and feel like Google Chrome and less like… Continue reading Windows 10 may Coming with New “Spartan”Browser

Oneplus One India Version Unboxing and Overview

OnePlus, a technology  announced the OnePlus One, the company’s first smartphone. We managed to get an invite to buy the phone. The phone packs top-end specifications and premium build, but comes at a competitive price of just Rs.21,999 for the 64GB variant. The company calls it as “2014 flagship killer”. We have the 64GB variant in Sandstone Blackcolor.… Continue reading Oneplus One India Version Unboxing and Overview

Some Hidden Secret Android Codes

Android Hidden Codes

1. Complete Information About your Phone   *#*#4636#*#*  This code is used to get some  really interesting information about your phone and battery. It shows following 4 menus on screen: Phone information Battery information Battery history Usage statistics 2. Factory data reset *#*#7780#*#* This code is used for the factory data reset. It’ll remove following things: All… Continue reading Some Hidden Secret Android Codes

Oneplus One Ban Lifted In India

OnePlus which was recently banned from importing and selling the OnePlus One in India due to an Case granted to Micromax over the use of Cyanogen branding and software on OnePlus devices. The Delhi High Court has now reversed its decision, allowing OnePlus to continue selling phones in India. OnePlus has been granted a lift… Continue reading Oneplus One Ban Lifted In India

How to Install Apk on Android Device from External Sources ?

How to Install APK ?

Today we are going to talk about how to install apk on android apps (APK’s) on any android devices.The Play Store holds more than one million apps in its giant library.But there are times you want to install applications from external locations. The Play Store is not the only place to find Android apps. Some… Continue reading How to Install Apk on Android Device from External Sources ?