Sunday, October 9, 2011

India has 33,587,640 Facebook accounts; ranked 3rd after US and Indonesia

Telecommunication Union’s report 'Measuring the Information Society', the United States of America (USA) has been ranked first among the countries having the highest number of Facebook accounts. US has for 154,040,460 accounts followed by 39,568,620 Indonesians and 33,587,640 accounts in India.
The report further says that India has bagged 116th rank in the ICT development index with 2.01 points. The country has climbed up one rank this year, last year India was ranked at 117 position with 1.72 points. The Republic of Korea has topped the list with 8.40 points, while India is ranked 20th among Asia-Pacific countries.

Friday, October 7, 2011

Make Your pdf files to speak



make ur pdf files to speak
This is the shortcuts for listening  pdf files in abobe reader 6.0 or higher

***Enable Read Out Loud, Go to->view->Read out loud->Enable Read out loud"
or simply press SHIFT+CTRL+Y

ctrl+shift+b ---->to hear the whole topic
ctrl+shift+v ---->to hear the page

Techno Sparks: A trick to hide your data

Techno Sparks: A trick to hide your data: Rename any folder with extension {645FF040-5081-101B-9F08-00AA002F954E} eg, if u've a folder games press F2, then type, games.{...

A trick to hide your data


Rename any folder with extension {645FF040-5081-101B-9F08-00AA002F954E}
eg,
if u've a folder games
press F2,
then type, games.{645FF040-5081-101B-9F08-00AA002F954E}
c the magic....

**first do it with an empty folder.... 


Prime Number code in C using DMA ,Function ,Pointer

    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    void main()
    {
     void prime(int *x,int );
     int *a,n,i;clrscr();
     printf("Enter limit");
     scanf("%d",&n);
     a=(int *)malloc(n*sizeof(int));

Calculating GCD In c

#include<stdio.h>
void main()
{
int n1,n2;
printf("\nEnter two numbers:");
scanf("%d %d",&n1,&n2);
if((n1==0)||(n2==0))