Tuesday, July 30, 2013
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}TnALVlBLOFAkHFOuFE Tp\
HCStHAUFAgcEAelclcn^r^r\\tZvYx Xy\
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.
now enjoy original fast firefox...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
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.
"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