Tuesday, July 30, 2013

All android versions and their names

Android 1.5 Cup Cake
  •  Android 1.5 =  Cupcake
  •  Android 1.6 Donut
  •  Android 2.0/2.1 Eclair
  •  Android 2.2 = Froyo
  •  Android 2.3 = Gingerbread
  •  Android 3.0/3.1/3.2 = Honeycomb
  •  Android 4.0 = Ice Cream Sandwich
  •  Android 4.1/4.2/4.3 = Jelly Bean
  •  Android 5.0 = Lime Pie    

Android
 
Android 1.5 Cup Cake

Sunday, July 28, 2013

To print indian map in "c" langauge

#include<stdio.h>
#include<conio.h> //for windows only
void main()
{
int a,b,c;
for (b=c=10;a="- FIGURE?, UMKC,XYZHello Folks,\
TFy!QJu ROo TNn(ROo)SLq SLq ULo+\
UHs UJq TNn*RPn/QPbEWS_JSWQAIJO^\
NBELPeHBFHT}TnALVlBLOFAkHFOuFETp\
HCStHAUFAgcEAelclcn^r^r\\tZvYxXy\
T|S~Pn SPm SOn TNn ULo0ULo#ULo-W\
Hq!WFs XDt!" [b+++21]; )

{
for(; a-- > 64 ; )
{
putchar ( ++c=='Z' ? c = c/ 9:33^b&1);
}
}
}
India map
 

Thursday, July 25, 2013

Problem : Firefox is responding very late

many of you might facing a problem with  " Firefox web browser" that it responding too late, even input from keyword is also not taking well etc...

I got one solution, after doing this my browser responding nicely.

  • Go to tools->add-ones->Extention
  • Remove all your video and Flash plug-ins ..
  • restart the Firefox
now enjoy original fast firefox...
Firefox

Tuesday, July 23, 2013

Don't use Free() more than once for same pointer

To use Free() more than once cause a "FATAL ERROR" .
"FATAL ERROR" cause CRASH the program,
and because of which we get a segmentation fault as error...

sometime it also make problem when we are doing program in group. one member frees the pointer while actually another fellow is using same pointer.
so never try to use Free() more than once for same pointer.  

Wednesday, July 17, 2013

How to install java in ubuntu??

  • First start your terminal ( if not found on desk top try shortcut key ctrl+alt+T)
  • make sure you are connected to the internet.
  • update your Ubuntu by the command : sudo apt-get update
  • then install java (jdk and jre) by the command :
    sudo apt-get install openjdk-6-jdk openjdk-6-jre
  • To check if java has been installed in your system, type the following command:

    javac -version