30 September 2012


new AIRTELlive!! hacking august 2012

 

The Wait Is Over... Get THE airtellive ! free surfing and hacking trick here

Surf Internet On Airtel For Free !

Activate Airtel Live ! on your mobile phone (No need to do any changes, just save the settings as it is).
Save the settings.
Open browser and enter any address in place of XXXX in 


http://59.160.228.22/index.php?p=XXXX

For eg: http://59.160.228.22/index.php?p=http://m.besttop.mobi or http://59.160.228.22/index.php?p=http://m.cricinfo.com 


 
                                         - Provided by Seevendra Dwivedi 

29 September 2012





Key For NORTON 9 antivirus 



XFKBB-PQJJV-G9969-VWGXY-2V3XY. 




                       


                     - provided by Seevendra Dwivedi






 Free LICENCE Key for 2 year AVG (PC Antivirus)


75VNU-TH1RR1-L7-P03-C01-S3S9MD-2YN-3AUS


                                              


                        - provided by Seevendra Dwivedi  


24 September 2012

Solution for producer consumer problem by using semaphore 
Provided by  Seevendra dwivedi


#include<stdio.h>
#include<conio.h>
#define max 5
int n,produced,consumed,buffer[max];
int result,i;
int main()
{
clrscr();
produced=0;
consumed=1;
result=0;
i=0;
while(1)
{
printf("Enter the choice\n");
printf("1.Producer 2.Consumer 3.Exit\n");
scanf("%d",&n);
if(n==3)
exit(0);
else if(n==1)
producer(consumed,buffer[i]);
else if(n==2)
consumer(produced,buffer[i]);
else
exit(0);
}
}
producer(int consumed,int result)
{
if((consumed==1)&&(i>=0))
{
result=result+1;
i++;
buffer[i]=result;
produced=1;
printf("Produced bufffer=%d\n",buffer[i]);
consumed=0;
return(produced,result);
}
else
printf("Buffer still to be consumed\n");
return 0;
}
consumer(int produced,int result)
{
if((produced==1)&&(i>=0))
{
consumed=1;
printf("Consumed buffer=%d\n",buffer[i]);
produced=0;
i--;
return(consumed,result);
}