Android is a one word for gadget-awesomeness. It transforms a smartphone into a power gadget. Here we are with some of the obscure android facts that you have not heard of yet.
1.What Android Means?
Whenever you hear...
Sunday, 14 December 2014
Friday, 12 December 2014
How to Tell if Google Considers your Website as Mobile Friendly
Google search on mobile now marks websites that are mobile friendly. How do you test if your sites are considered so by the Google spiders?
You can no longer afford to not have a mobile-friendly website that isn’t...
Saturday, 6 December 2014
Array as a stack and as a queue program in C++
/* Following program implements array as a stack and as a queue with push and pop operations.*/
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
void arrstack()
{
clrscr();
int...