This is default featured post 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Thursday, April 28, 2011
Download Free Keygen & Serial keys for all EA Games
................................................................................................
TIC-TAC-TOE game In C Language
#include #include void
Board(); void PlayerX(); void PlayerO(); void
Player_win(); void check(); int
win=0,wrong_X=0,wrong_O=0,chk=0; char name_X[30]; char
name_O[30]; int pos_for_X[3][3]; int pos_for_O[3][3];
int pos_marked[3][3]; void main() { int i,ch,j; char
ans; /* clrscr(); printf(”\n\t\t\t\tTIC TAC TOE”);
printf(”\n\t\t\t\t”); for(i=1;i<=11;i++) {
delay(10000); printf(”*”); }*/ do { clrscr();
printf(”\n\t\t\t\tTIC TAC TOE”); printf(”\n\t\t\t\t”);
for(i=1;i<=11;i++) { delay(10000); printf(”*”); }
printf(”\n1.Start The Game”); printf(”\n2.Quit The
Game”); printf(”\nEnter your choice(1-2) : “);
scanf(”%d”,&ch); switch(ch) { case 1: chk=0; win=0;
for(i=1;i<=3;i++) { for(j=1;j<=3;j++) {
pos_for_X[j]=0; pos_for_O[j]=0;
pos_marked[j]=0; } } printf(”\n\n”); clrscr();
printf(”\nEnter the name of the player playing for
\’X\’: “); fflush(stdin); gets(name_X); printf(”\nEnter
the name of the player playing for \’O\’: “);
fflush(stdin); gets(name_O); Board(); for(;
if(win==1) break; check(); if(chk==9) {
printf(”\n\t\t\tMATCH DRAWS!!”); printf(”\nPress any
key….”); break; } else chk=0; printf(”\nTURN FOR
%s:”,name_X); PlayerX(); do { if(wrong_X!=1) break;
wrong_X=0; printf(”\nTURN FOR %s:”,name_X); PlayerX();
}while(wrong_X==1); check(); if(chk==9) {
printf(”\n\t\t\tMATCH DRAWS”); printf(”\nPress any
key….”); break; } else chk=0; printf(”\nTURN FOR
%s:”,name_O); PlayerO(); do { if(wrong_O!=1) break;
wrong_O=0; printf(”\nTURN FOR %s:”,name_O); PlayerO();
}while(wrong_O==1); } Board(); if(win!=1) {
printf(”\n\t\t\tMATCH DRAWS!!”); printf(”\nPress any
key…….”); } getch(); break; case 2:
printf(”\n\n\n\t\t\tThank You For Playing The Game.”);
printf(”\n\t\t\t###############################”);
getch(); exit(1); break; } printf(”\nWant To Play(Y/N) ?
“); fflush(stdin); scanf(”%c”,&ans); }while(ans==’y’
|| ans==’Y'); } void Board() { int i,j; clrscr();
printf(”\n\t\t\t\tTIC TAC TOE BOARD”);
printf(”\n\t\t\t\t*****************”); printf(”\n\n\n”);
printf(”\n\t\t\t 1\t 2\t 3″); for(i=1;i<=3;i++) {
printf(”\n \t\t\t _____________________________”);
printf(”\n \t\t\tº\t º\t º\t º”);
printf(”\n\t\t%d\t”,i); for(j=1;j<=3;j++) {
if(pos_for_X[j]==1) { printf(” X”); printf(” “); }
else if(pos_for_O[j]==1) { printf(” O”); printf(” “);
} else { printf(” “); continue; } } printf(”\n\t\t\tº\t
º\t º\t º”); }
printf(”\n\t\t\t——————————”);
Player_win(); } void PlayerX() { int row,col; if(win==1)
return; printf(”\nEnter the row no. : “); fflush(stdin);
scanf(”%d”,&row); printf(”Enter the column no. : “);
fflush(stdin); scanf(”%d”,&col);
if(pos_marked[row][col]==1 || row3 ||
col3) { printf(”\nWRONG POSITION!! Press
any key…..”); wrong_X=1; getch(); Board(); } else {
pos_for_X[row][col]=1; pos_marked[row][col]=1; Board();
} } void PlayerO() { int row,col; if(win==1) return;
printf(”\nEnter the row no. : “); scanf(”%d”,&row);
printf(”Enter the column no. : “); scanf(”%d”,&col);
if(pos_marked[row][col]==1 || row3 ||
col3) { printf(”\nWRONG POSITION!! Press
any key….”); wrong_O=1; getch(); Board(); } else {
pos_for_O[row][col]=1; pos_marked[row][col]=1; Board();
} } void Player_win() { int i; for(i=1;i<=3;i++) {
if(pos_for_X[1]==1 && pos_for_X[2]==1
&& pos_for_X[3]==1) { win=1;
printf(”\n\nRESULT: %s wins!!”,name_X); printf(”\nPress
any key…………”); return; } } for(i=1;i<=3;i++)
{ if(pos_for_X[1]==1 && pos_for_X[2]==1
&& pos_for_X[3]==1) { win=1;
printf(”\n\nRESULT: %s wins!!”,name_X); printf(”\nPress
any key…………”); return; } } if(pos_for_X[1][1]==1
&& pos_for_X[2][2]==1 &&
pos_for_X[3][3]==1) { win=1; printf(”\n\nRESULTL: %s
wins!!”,name_X); printf(”\nPress any key……”);
return; } else if(pos_for_X[1][3]==1 &&
pos_for_X[2][2]==1 && pos_for_X[3][1]==1) {
win=1; printf(”\n\nRESULT: %s wins!!”,name_X);
printf(”\nPress any key…..”); return; }
for(i=1;i<=3;i++) { if(pos_for_O[1]==1 &&
pos_for_O[2]==1 && pos_for_O[3]==1) {
win=1; printf(”\n\nRESULT: %s wins!!”,name_O);
printf(”\nPress any key…..”); return; } }
for(i=1;i<=3;i++) { if(pos_for_O[1]==1 &&
pos_for_O[2]==1 && pos_for_O[3]==1) {
win=1; printf(”\n\nRESULT: %s wins!!”,name_O);
printf(”\nPress any key…..”); return; } }
if(pos_for_O[1][1]==1 && pos_for_O[2][2]==1
&& pos_for_O[3][3]==1) { win=1;
printf(”\n\nRESULT: %s wins!!”,name_O); printf(”\nPress
any key…..”); return; } else if(pos_for_O[1][3]==1
&& pos_for_O[2][2]==1 &&
pos_for_O[3][1]==1) { win=1; printf(”\n\nRESULT: %s
wins!!”,name_O); printf(”\nPress any key…..”); return;
} } void check() { int i,j; for(i=1;i<=3;i++) {
for(j=1;j<=3;j++) { if(pos_marked[j]==1) chk++;
else continue; } } }
just compile it using turbo c compiler
Download Free [PC Game] Dark Sector (ENG/PC/2009)
Dark Sector thrusts players into the role of Hayden Tenno, a covert operative sent on a dangerous mission into Lasria – an Eastern European city on the brink of ruin that hides a deadly Cold War secret.
In the midst of Dark Sector’s first ission, Hayden is attacked by an unknown enemy and infected by the Technocyte Virus – a brutal bio-weapon that twists its victims into mindless killing machines. Surviving this attack, Hayden finds that the Technocyte virus has granted him powerful, inhuman abilities unlike anything he has ever seen. Now, he and the Dark Sector player must evolve with his powers, survive and become a hero.
HotFile
http://hotfile.com/dl/27550645/cdc5718/DS.PC.part01.rar.html
http://hotfile.com/dl/27551285/be7cf78/DS.PC.part02.rar.html
http://hotfile.com/dl/27552218/9f677cd/DS.PC.part03.rar.html
http://hotfile.com/dl/27552907/d5a05d8/DS.PC.part04.rar.html
http://hotfile.com/dl/27552923/499fb0f/DS.PC.part05.rar.html
http://hotfile.com/dl/27552961/ed12224/DS.PC.part06.rar.html
http://hotfile.com/dl/27553015/d824c50/DS.PC.part07.rar.html
http://hotfile.com/dl/27553166/d7bb231/DS.PC.part08.rar.html
http://hotfile.com/dl/27553200/7d2d8c8/DS.PC.part09.rar.html
http://hotfile.com/dl/27555111/ec5e3e3/DS.PC.part10.rar.html
http://hotfile.com/dl/27554996/b5ead9b/DS.PC.part11.rar.html
http://hotfile.com/dl/27555068/6e3e6f4/DS.PC.part12.rar.html
http://hotfile.com/dl/27775488/1ce8635/DS.PC.part13.rar.html
http://hotfile.com/dl/27775764/5ebcec4/DS.PC.part14.rar.html
http://hotfile.com/dl/27777621/dd31283/DS.PC.part15.rar.html
http://hotfile.com/dl/27776086/362d0b7/DS.PC.part16.rar.html
http://hotfile.com/dl/27776246/31df275/DS.PC.part17.rar.html
http://hotfile.com/dl/27777462/589c168/DS.PC.part18.rar.html
http://hotfile.com/dl/27777546/6f77ab2/DS.PC.part19.rar.html
http://hotfile.com/dl/27778091/140b01e/DS.PC.part20.rar.html
http://hotfile.com/dl/27778164/bce97bf/DS.PC.part21.rar.html
http://hotfile.com/dl/27777952/761af78/DS.PC.part22.rar.html
http://hotfile.com/dl/27779142/2183899/DS.PC.part23.rar.html
http://hotfile.com/dl/27779925/d4fc354/DS.PC.part24.rar.html
http://hotfile.com/dl/27780235/e07612f/DS.PC.part25.rar.html
http://hotfile.com/dl/27800520/b35827e/DS.PC.part26.rar.html
http://hotfile.com/dl/27801042/810249f/DS.PC.part27.rar.html
http://hotfile.com/dl/27801272/c078cc9/DS.PC.part28.rar.html
http://hotfile.com/dl/27804852/6a635e7/DS.PC.part29.rar.html
http://hotfile.com/dl/27804948/e9e0338/DS.PC.part30.rar.html
http://hotfile.com/dl/27805139/3a25fd2/DS.PC.part31.rar.html
http://hotfile.com/dl/27806573/db74ebe/DS.PC.part32.rar.html
http://hotfile.com/dl/27806695/bf80e57/DS.PC.part33.rar.html
http://hotfile.com/dl/27806819/8d2694e/DS.PC.part34.rar.html
http://hotfile.com/dl/27807025/aaa4055/DS.PC.part35.rar.html
http://hotfile.com/dl/27807098/8ab2123/DS.PC.part36.rar.html
Oron
http://oron.com/cf1avfrnuwur/DS.PC.part01.rar.html
http://oron.com/cn74oq7kx256/DS.PC.part02.rar.html
http://oron.com/nh7lyhzm56op/DS.PC.part03.rar.html
http://oron.com/shiyr1wkrwxo/DS.PC.part04.rar.htmlhttp://oron.com/oztqrhfpbnrg/DS.PC.part05.rar.html
http://oron.com/57gqdgxf3u0o/DS.PC.part06.rar.html
http://oron.com/w5fpasj2d2xj/DS.PC.part07.rar.html
http://oron.com/wj130hwjs2k4/DS.PC.part08.rar.html
http://oron.com/wlcyrcoddlki/DS.PC.part09.rar.html
http://oron.com/5qhnlro4pxt9/DS.PC.part10.rar.html
http://oron.com/rjrjmrei4wvg/DS.PC.part11.rar.html
http://oron.com/vdiwyvrs0ixh/DS.PC.part12.rar.html
http://oron.com/q14499oia70f/DS.PC.part13.rar.html
http://oron.com/y6k79fk0tcfv/DS.PC.part14.rar.html
http://oron.com/9h4tukdxiz0p/DS.PC.part15.rar.html
http://oron.com/hzlcemr1542g/DS.PC.part16.rar.html
http://oron.com/h6qduvhe7cyk/DS.PC.part17.rar.html
http://oron.com/v9lppxfl95b9/DS.PC.part18.rar.html
http://oron.com/b0wc27ghqs2i/DS.PC.part19.rar.html
http://oron.com/6ogd4os6jcjj/DS.PC.part20.rar.html
http://oron.com/inrvnzov4ckt/DS.PC.part21.rar.html
http://oron.com/xg3y6lna89r7/DS.PC.part22.rar.html
http://oron.com/lqa3lmjmoy47/DS.PC.part23.rar.html
http://oron.com/1suu4xz69vnb/DS.PC.part24.rar.html
http://oron.com/fxif9vrbk4c4/DS.PC.part25.rar.html
http://oron.com/5qdafk9dj15g/DS.PC.part26.rar.html
http://oron.com/pevxf63ulnfl/DS.PC.part27.rar.html
http://oron.com/6k0whzgg8wl3/DS.PC.part28.rar.html
http://oron.com/b90i8l3i9rn5/DS.PC.part29.rar.html
http://oron.com/the5wyhoub90/DS.PC.part30.rar.html
http://oron.com/bv8fc3y2kwh4/DS.PC.part31.rar.html
http://oron.com/ro8ky3vsg0ob/DS.PC.part32.rar.html
http://oron.com/jim8ff7s0mgo/DS.PC.part33.rar.html
http://oron.com/z05oqd8pn0uv/DS.PC.part34.rar.html
http://oron.com/14v04enx7gak/DS.PC.part35.rar.html
http://oron.com/wb8pzyqb8opv/DS.PC.part36.rar.html
Mirror
http://www.upload.el3lam.com/34s3izoxnqms/...part02.rar.html
http://www.upload.el3lam.com/x6cprbr5bvg1/...part01.rar.html
http://www.upload.el3lam.com/k95m9i8rlxfy/...part04.rar.html
http://www.upload.el3lam.com/hna1w1k8va4h/...part03.rar.html
http://www.upload.el3lam.com/gnu9f2gi8x01/...part13.rar.html
http://www.upload.el3lam.com/rn7v9xrkjglb/...part16.rar.html
http://www.upload.el3lam.com/8aos7upm68g1/...part17.rar.html
http://www.upload.el3lam.com/pmwvqjgb2737/...part18.rar.html
http://www.upload.el3lam.com/ezc4ilhlf1c3/...part21.rar.html
http://www.upload.el3lam.com/28smjfx2l8wl/...part20.rar.html
http://www.upload.el3lam.com/yhn26tvb3qj9/...part21.rar.html
http://www.upload.el3lam.com/fr0xe5xbhtsj/...part22.rar.html
http://www.upload.el3lam.com/8gq1800ib2d2/...part05.rar.html
http://www.upload.el3lam.com/yxvhe6ksn52i/...part06.rar.html
http://www.upload.el3lam.com/ouzoohmv5m0r/...part07.rar.html
http://www.upload.el3lam.com/vkgjk1uhu94c/...part08.rar.html
http://www.upload.el3lam.com/ppm8cj0miy9w/...part09.rar.html
http://www.upload.el3lam.com/86g0ndi5uv7t/...part15.rar.html
http://www.upload.el3lam.com/qhmw7y5bma4n/...part12.rar.html
http://www.upload.el3lam.com/q45mj89ifqvy/...part14.rar.html
http://www.upload.el3lam.com/47zskxfl73vc/...part23.rar.html
http://www.upload.el3lam.com/fdneclpfjcst/...part24.rar.html
http://www.upload.el3lam.com/7uoem6hrji4s/...part25.rar.html
http://www.upload.el3lam.com/0kv8a2zcz25a/...part26.rar.html
http://www.upload.el3lam.com/ooi852k8ipi6/...part27.rar.html
http://www.upload.el3lam.com/qxrvctur8t5j/...part28.rar.html
http://www.upload.el3lam.com/71241d6b6vvt/...part29.rar.html
http://www.upload.el3lam.com/s5y7wfh32tig/...part30.rar.html
http://www.upload.el3lam.com/lxwrdani2t1m/...part31.rar.html
http://www.upload.el3lam.com/2bvdnqex37hk/...part32.rar.html
http://www.upload.el3lam.com/p2vlp0ocz9bu/...part33.rar.html
http://www.upload.el3lam.com/u0xkywljk21g/...part34.rar.html
http://www.upload.el3lam.com/4bg4i1ckraqp/...part35.rar.html
http://www.upload.el3lam.com/kmn52yg8vyfq/...part36.rar.html
http://www.upload.el3lam.com/mnvvpmca71bz/...part10.rar.html
http://www.upload.el3lam.com/cytb83odcbfz/...part11.rar.html
Game Boost 1.7.5.2010 | 6.54 MB
GameBoost - program your computer's settings for his best work during the games and surfing the Internet. GameBoost is based on the programs GameGain and Throttle. The utility, which optimizes your computer for maximum performance in online games and internet connection. Made changes to the registry and system files to enhance memory performance, image rendering, animation, speed Internet connections. All changes are made in accordance with the operating system and the type of Internet connection.
Changes in GameBoost - Updated and fixed the Windows 7 components which were causing random crashes for a small number of users running Windows in July 1964-bit.
Language: English
OS: Windows All
Medician: Yes
DOWNLOAD LINKS:
DepositFiles || HotFile