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