Sunday 23 December 2012

C++ Program on Railway Reservation System



Railway Reservation System

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
#include<iostream.h>
#include<time.h>
#include<iomanip.h>
#include<fstream.h>
char f[10]=”f”;
char s[10]=”s”;
int addr,ad,flag,f1,d,m,i,amt;
float tamt;
class login
{
public:
char id[100];
char pass[100];
char *password;
void getid()
{
cout<<”Enter your id:”;gets(id);
password=getpass(“Enter the password:”);
strcpy(pass,password);
}
void displayid()
{
cout<<”Id:”;puts(id);
cout<<”Password:”;puts(pass);
}
};
class detail
{
public:
int tno;
char tname[100];

char bp[100];
char dest[100];
int c1,c1fare;
int c2,c2fare;
int d,m,y;
void getdetail()
{
cout<<”Enter the details as followsn”;
cout<<”Train no:”;cin>>tno;
cout<<”Train name:”;gets(tname);
cout<<”Boarding point:”;gets(bp);
cout<<”Destination pt:”;gets(dest);
cout<<”No of seats in first class & fare per ticket:”;
cin>>c1>>c1fare;
cout<<”No of seats in second class & fare per ticket:”;
cin>>c2>>c2fare;
cout<<”Date of travel:”;cin>>d>>m>>y;
}
void displaydetail()
{
cout<<tno<<”t”<<tname<<”t”<<bp<<”t”<<dest<<”t”;
cout<<c1<<”t”<<c1fare<<”t”<<c2<<”t”<<c2fare<<”t”;
cout<<d<<”-”<<m<<”-”<<y<<”t”<<endl;
}
};
class reser
{
public:
int pnr;
int tno;
char tname[100];
char bp[10];
char dest[100];
char pname[10][100];
int age[20];
char clas[10];
int nosr;
int i;
int d,m,y;
int con;

float amc;
void getresdet()
{
cout<<”Enter the details as followsn”;
cout<<”Train no:”;cin>>tno;
cout<<”Train name:”;gets(tname);
cout<<”Boarding point:”;gets(bp);
cout<<”Destination pt:”;gets(dest);
cout<<”No of seats required:”;cin>>nosr;
for(i=0;i<nosr;i++)
{
cout<<”Passenger name:”;gets(pname[i]);
cout<<”Passenger age:”;cin>>age[i];
}
cout<<”Enter the class f-first class s-second class:”;
gets(clas);
cout<<”Date of travel:”;cin>>d>>m>>y;
cout<<”Enter the concession categoryn”;
cout<<”1.Militaryn2.Senior citizenn”;
cout<<”3.Children below 5 yrsn4.Nonen”;
cin>>con;
cout<<”…………END OF GETTING DETAILS…………n”;
}
void displayresdet()
{
cout<<”………………………………………..n”;
cout<<”………………………………………..n”;
cout<<”Pnr no:”<<pnr;
cout<<”nTrain no:”<<tno;
cout<<”nTrain name:”;puts(tname);
cout<<”Boarding point:”;puts(bp);
cout<<”Destination pt:”;puts(dest);
cout<<”No of seats reserved:”<<nosr;
for(i=0;i<nosr;i++)
{
cout<<”Passenger name:”;puts(pname[i]);
cout<<”Passenger age:”<<age[i];
}

cout<<”nYour class:”;puts(clas);
cout<<”nDate of reservation:”<<d<<”-”<<m<<”-”<<y;
cout<<”nYour concession category:”<<con;
cout<<”nYou must pay:”<<amc<<endl;
cout<<”***********************************************n”;
cout<<”………END OF RESERVATION……………..n”;
cout<<”***********************************************n”;
}
};
class canc
{
public:
int pnr;
int tno;
char tname[100];
char bp[10];
char dest[100];
char pname[10][100];
int age[20];
int i;
char clas[10];
int nosc;
int d,m,y;
float amr;
void getcancdet()
{
cout<<”Enter the details as followsn”;
cout<<”Pnr no:”;cin>>pnr;
cout<<”Date of cancellation:”;cin>>d>>m>>y;
cout<<”………..END OF GETTING DETAILS………..n”;
}
void displaycancdet()
{
cout<<”…………………………………….n”;
cout<<”…………………………………….n”;
cout<<”Pnr no:”<<pnr;
cout<<”nTrain no:”<<tno;
cout<<”nTrain name:”;puts(tname);
cout<<”Boarding point:”;puts(bp);

cout<<”Destination pt:”;puts(dest);
cout<<”nYour class:”;puts(clas);
cout<<”no of seats to be cancelled:”<<nosc;
for(i=0;i<nosc;i++)
{
cout<<”Passenger name:”;puts(pname[i]);
cout<<”passenger age:”<<age[i];
}
cout<<”nDate of cancellation:”<<d<<”-”<<m<<”-”<<y;
cout<<”nYou can collect:”<<amr<<”rs”<<endl;
cout<<”*****************************************n”;
cout<<”………END OF CANCELLATION………….n”;
cout<<”*****************************************n”;
}
};
void manage();
void can();
void user();
void database();
void res();
void reserve();
void displaypassdetail();
void cancell();
void enquiry();
void main()
{
clrscr();
int ch;
cout<<”~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~n”;
cout<<”…….WELCOME TO RAILWAY RESERVATION SYSTEM……….n”;
cout<<”~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~n”;
do
{
cout<<”^^^^^^^^^^^^^^^^^^^^^^MAIN MENU^^^^^^^^^^^^^^^^^^^^n”;
cout<<”1.Admin moden2.User moden3.Exitn”;
cout<<”Enter your choice:”;
cin>>ch;
cout<<endl;
switch(ch)

{
case 1:
database();
break;
case 2:
user();
break;
case 3:
exit(0);
}
}while(ch<=3);
getch();
}
void database()
{
char *password;
char *pass=”abc”;
password=getpass(“Enter the admininistrator password:”);
detail a;
fstream f;
int ch;
char c;
if(strcmp(pass,password)!=0)
{
cout<<”Enter the password correctly n”;
cout<<”You are not permitted to logon this moden”;
goto h;
}
if(strcmp(pass,password)==0)
{
char c;
do
{
cout<<”………..ADMINISTRATOR MENU………..n”;
cout<<”1.Create detail data basen2.Add detailsn”;
cout<<”3.Display detailsn4.User managementn”;
cout<<”5.Display passenger detailsn6.Return to main menun”;
cout<<”Enter your choice:”;
cin>>ch;

cout<<endl;
switch(ch)
{
case 1:
f.open(“t.txt”,ios::out|ios::binary);
do
{
a.getdetail();
f.write((char *) & a,sizeof(a));
cout<<”Do you want to add one more record?n”;
cout<<”y-for Yesnn-for Non”;
cin>>c;
}while(c==’y');
f.close();
break;
case 2:
f.open(“t.txt”,ios::in|ios::out|ios::binary|ios::app);
a.getdetail();
f.write((char *) & a,sizeof(a));
f.close();
break;
case 3:
f.open(“t.txt”,ios::in|ios::out|ios::binary|ios::app);
f.seekg(0);
while(f.read((char *) & a,sizeof(a)))
{
a.displaydetail();
}
f.close();
break;
case 4:
manage();
break;
case 5:
displaypassdetail();
break;
}
}while(ch<=5);

f.close();
}
h:
}
void reserve()
{
int ch;
do
{
cout<<”1.Reserven2.Return to the main menun”;
cout<<”Enter your choice:”;
cin>>ch;
cout<<endl;
switch(ch)
{
case 1:
res();
break;
}
}while(ch==1);
getch();
}
void res()
{
detail a;
reser b;
fstream f1,f2;
time_t t;
f1.open(“t.txt”,ios::in|ios::out|ios::binary);
f2.open(“p.txt”,ios::in|ios::out|ios::binary|ios::app);
int ch;
b.getresdet();
while(f1.read((char *) &a,sizeof(a)))
{
if(a.tno==b.tno)
{
if(strcmp(b.clas,f)==0)
{
if(a.c1>=b.nosr)

{
amt=a.c1fare;
addr=f1.tellg();
ad=sizeof(a.c1);
f1.seekp(addr-(7*ad));
a.c1=a.c1-b.nosr;
f1.write((char *) & a.c1,sizeof(a.c1));
if(b.con==1)
{
cout<<”Concession category:MILITARY PERSONNELn”;
b.amc=b.nosr*((amt*50)/100);
}
else if(b.con==2)
{
cout<<”Concession category:SENIOR CITIZENn”;
b.amc=b.nosr*((amt*60)/100);
}
else if(b.con==3)
{
cout<<”Concession category:CHILDERN BELOW FIVEn”;
b.amc=0.0;
}
else if(b.con==4)
{
cout<<”You cannot get any concessionn”;
b.amc=b.nosr*amt;
}
srand((unsigned) time(&t));
b.pnr=rand();
f2.write((char *) & b,sizeof(b));
b.displayresdet();
cout<<”——————————————————n”;
cout<<”————–Your ticket is reserved———–n”;
cout<<”—————–End of reservation menu——-n”;
}
else
{
cout<<”**********Sorry req seats not available********n”;

}
}
else if(strcmp(b.clas,s)==0)
{
if(a.c2>=b.nosr)
{
amt=a.c2fare;
addr=f1.tellg();
ad=sizeof(a.c2);
f1.seekp(addr-(5*ad));
a.c2=a.c2-b.nosr;
f1.write((char *) & a.c2,sizeof(a.c2));
if(b.con==1)
{
cout<<”Concession category:MILITARY PRESONNELn”;
b.amc=b.nosr*((amt*50)/100);
}
else if(b.con==2)
{
cout<<”Concession category:SENIOR CITIZENn”;
b.amc=b.nosr*((amt*60)/100);
}
else if(b.con==3)
{
cout<<”Concession category:CHILDERN BELOW FIVEn”;
b.amc=0.0;
}
else if(b.con==4)
{
cout<<”You cannot get any concessionn”;
b.amc=b.nosr*amt;
}
f2.write((char *) & b,sizeof(b));
b.displayresdet();
cout<<”—————————————n”;
cout<<”——–Your ticket is reserved——–n”;
cout<<”————End of reservation———n”;
}
else

{
cout<<”********Sorry req no of seats not available*******n”;
}
}
getch();
goto h;
}
else
{
flag=0;
}
}
if(flag==0)
{
cout<<”…………Wrong train no………………….n”;
cout<<”……Enter the train no from the data base…..n”;
}
f1.close();
f2.close();
getch();
h:
}
void displaypassdetail()
{
fstream f;
reser b;
f.open(“p.txt”,ios::in|ios::out|ios::binary);
f.seekg(0);
while(f.read((char *) & b,sizeof(b)))
{
b.displayresdet();
}
f.close();
getch();
}
void enquiry()
{

fstream f;
f.open(“t.txt”,ios::in|ios::out|ios::binary);
detail a;
while(f.read((char *) & a,sizeof(a)))
{
a.displaydetail();
}
getch();
}
void cancell()
{
detail a;
reser b;
canc c;
fstream f1,f2,f3;
f1.open(“t.txt”,ios::in|ios::out|ios::binary);
f2.open(“p.txt”,ios::in|ios::out|ios::binary);
f3.open(“cn.txt”,ios::in|ios::out|ios::binary);
cout<<”**********CANCELLATION MENU*********n”;
c.getcancdet();
while(f2.read((char *) & b,sizeof(b)))
{
if(b.pnr==c.pnr)
{
c.tno=b.tno;
strcpy(c.tname,b.tname);
strcpy(c.bp,b.bp);
strcpy(c.dest,b.dest);
c.nosc=b.nosr;
for(int j=0;j<c.nosc;j++)
{
strcpy(c.pname[j],b.pname[j]);
c.age[j]=b.age[j];
}
strcpy(c.clas,b.clas);
if(strcmp(c.clas,f)==0)
{
while(f1.read((char *) & a,sizeof(a)))
{

if(a.tno==c.tno)
{
a.c1=a.c1+c.nosc;
d=a.d;
m=a.m;
addr=f1.tellg();
ad=sizeof(a.c1);
f1.seekp(addr-(7*ad));
f1.write((char *) & a.c1,sizeof(a.c1));
tamt=b.amc;
if((c.d==d)&&(c.m==m))
{
cout<<”You are cancelling at the date of departuren”;
c.amr=tamt-((tamt*60)/100);
}
else if(c.m==m)
{
cout<<”You are cancelling at the month of departuren”;
c.amr=tamt-((tamt*50)/100);
}
else if(m>c.m)
{
cout<<”You are cancelling one month before the date of departuren”;
c.amr=tamt-((tamt*20)/100);
}
else
{
cout<<”Cancelling after the departuren”;
cout<<”Your request cannot be completedn”;
}
goto h;
c.displaycancdet();
}
}
}
else if(strcmp(c.clas,s)==0)
{
while(f1.read((char *) & a,sizeof(a)))
{

if(a.tno==c.tno)
{
a.c2=a.c2+c.nosc;
d=a.d;
m=a.m;
addr=f1.tellg();
ad=sizeof(a.c2);
f1.seekp(addr-(5*ad));
f1.write((char *) & a.c2,sizeof(a.c2));
tamt=b.amc;
if((c.d==d)&&(c.m==m))
{
cout<<”You are cancelling at the date of departuren”;
c.amr=tamt-((tamt*60)/100);
}
else if(c.m==m)
{
cout<<”You are cancelling at the month of departuren”;
c.amr=tamt-((tamt*50)/100);
}
else if(m>c.m)
{
cout<<”You are cancelling one month before the date of departuren”;
c.amr=tamt-((tamt*20)/100);
}
else
{
cout<<”Cancelling after the departuren”;
cout<<”Your request cannot be completedn”;
}
goto h;
c.displaycancdet();
}
}
}
}
else
{
flag=0;

}
}
h:
if(flag==0)
{
cout<<”Enter the correct pnr non”;
}
f1.close();
f2.close();
f3.close();
getch();
}
void can()
{
int ch;
do
{
cout<<”……………..CANCELLATION MENU………n”;
cout<<”1.Cancelln2.Return to the main menun”;
cout<<”Enter your choice:”;
cin>>ch;
cout<<endl;
switch(ch)
{
case 1:
cancell();
break;
}
}while(ch==1);
getch();
}
void user()
{
login a;
int ch;
cout<<”*****************************************************n”;
cout<<”***********WELCOME TO THE USER MENU**n”;
cout<<”****************************************************n”;
char *password;

fstream f;
f.open(“id.txt”,ios::in|ios::out|ios::binary);
char id[100];
puts(“Enter your id:”);gets(id);
password=getpass(“Enter your password:”);
while(f.read((char *) & a,sizeof(a)))
{
if((strcmp(a.id,id)==0)&&(strcmp(a.pass,password)==0))
{
do
{
cout<<”1.Reserven2.Cancelln3.Enquiryn4.Return to the main menun”;
cout<<”Enter your choice:”;
cin>>ch;
cout<<endl;
switch(ch)
{
case 1:
reserve();
break;
case 2:
cancell();
break;
case 3:
enquiry();
break;
}
}while(ch<=3);
goto j;
}
else
{
d=1;
}
}
if(d==1)
{
cout<<”Enter your user id and password correctlyn”;
}

getch();
j:
}
void manage()
{
int ch;
fstream f;
char c;
login a;
cout<<”………WELCOME TO THE USER MANAGEMENT MENU……..n”;
do
{
cout<<”1.Create id data basen2.Add detailsn”;
cout<<”3.Display detailsn4.Return to the main menun”;
cout<<”Enter your choice:”;
cin>>ch;
cout<<endl;
switch(ch)
{
case 1:
f.open(“id.txt”,ios::out|ios::binary);
do
{
a.getid();
f.write((char *) & a,sizeof(a));
cout<<”Do you want to add one more recordn”;
cout<<”y-Yesnn-Non”;
cin>>c;
}while(c==’y');
f.close();
break;
case 2:
f.open(“id.txt”,ios::in|ios::out|ios::binary|ios::app);
a.getid();
f.write((char *) & a,sizeof(a));
f.close();
break;
case 3:
f.open(“id.txt”,ios::in|ios::out|ios::binary);

f.seekg(0);
while(f.read((char *) & a,sizeof(a)))
{
a.displayid();
}
f.close();
break;
}
}while(ch<=3);
getch();

Please do +1, Like, Share, Send, Tweet, Stumble Upon this page to support us.

C++ Project on Telephone Directory



Telephone Directory


#include<iostream .h>
#include<fstream .h>
#include<iomanip .h>
#include<string .h>
#include<stdlib .h>
#include<conio .h>
#include<stdio .h>
#include<iomanip .h>
#include<graphics .h>
#include<dos .h>
class stud

{

public:

char name[20];

char address[20];

unsigned int ph_no;

void get(void);

void show(void);

void modify(void);

};

void stud::get(void)

{

int i=0;

cout<”;

cin.get(name[i]);

while(name[i]!=’n’)

{

i=i+1;

cin.get(name[i]);

}

cin.getline(name,20,’n’);

cout<”;

cin.getline(address,20,’n’);

fflush(stdin);

cout<t”;

cin>>ph_no;

fflush(stdin);

}

void stud::show(void)

{

cout<

cout<}

void main()

{

int gdriver = DETECT, gmode, errorcode;

int x,y;

int midx,midy;

/* initialize graphics and local variables */

initgraph(&gdriver, &gmode, “”);

/* read result of initialization */

errorcode = graphresult();

if (errorcode != grOk) /* an error occurred */

{

printf(“Graphics error: %sn”, grapherrormsg(errorcode));

printf(“Press any key to halt:”);

getch();

exit(1); /* terminate with an error code */

closegraph();

}

y:

char*pass=”RPV”;

char*ppass;

gotoxy(25,8);

int size=7;

settextstyle(7,0,size);

setbkcolor(BLUE);

setcolor(WHITE);

outtextxy(180,50,”WELCOME” );

setcolor(WHITE);

outtextxy(250,200,”TO”);

settextstyle(8,0,5);

setfillstyle(1,DARKGRAY);

setcolor(WHITE);

outtextxy(60,350,”nnTELEPHONE DIRECTORY”);

getch();

clearviewport();

settextstyle(3,0,4);

settextstyle(7,0,4);

getch();

clearviewport();

g:

ppass=getpass(“ENTER THE PASSWORD::”);

if(strcmpi(pass,ppass)!=0)

{

cout< PRESS ANY KEY 1 TO 6 ” );

settextstyle(TRIPLEX_FONT ,HORIZ_DIR,4);

outtextxy(220,50,”nn1. TO ADD ” );

setcolor(BLUE);

settextstyle(TRIPLEX_FONT,HORIZ_DIR,4);

outtextxy(220,100,”nn2. TO SHOW ” );

setcolor(BLUE);

settextstyle(TRIPLEX_FONT,HORIZ_DIR,4);

outtextxy(220,150,”nn3. TO SEARCH ” );

setcolor(BLUE);

settextstyle(TRIPLEX_FONT,HORIZ_DIR,4);

outtextxy(220,200,”4.nn TO MODIFY ” );

setcolor(BLUE);

settextstyle(TRIPLEX_FONT,HORIZ_DIR,4);

outtextxy(220,250,”nnn5. TO DELETE ” );

setcolor(BLUE);

settextstyle(TRIPLEX_FONT,HORIZ_DIR,4);

outtextxy(220,300,”nnn6. TO EXIT ” );

settextstyle(TRIPLEX_FONT,HORIZ_DIR,3);

outtextxy(220,350,” Enter the choice ->”);

gotoxy(62,23);

cin>>ch;

switch(ch)

{

case 1: //responsible for addition of record

{

clrscr();

fstream f;

f.open(“rec”,ios::in|ios::out|ios::ate|ios::app|ios::binary);

char ans;

s.get();

f.write((char *)&s,sizeof(s));

clrscr();

outtextxy(250,360, ” Do you want to continue:- “);

ans=getche();

if(ans==’Y’ || ans==’y'){goto z;}

f.close();

break;

}

case 2: // will show all the contents of the file

{

clrscr();

cout<
fstream f;

f.open(“rec”,ios::in|ios::out|ios::ate|ios::app|ios::binary);

f.seekg(0);

int ctr=0;

while(f.read((char *)&s,sizeof(s)) )

{

ctr=ctr+1;

if(ctr==8) {getchar(); clrscr();ctr=0;}

s.show();

if(f.eof()==1)

{break;}

}

f.close();

outtextxy(240,350, ” Do you want to continue :-”);

char ans;

ans=getche();

if(ans==’y'|| ans==’Y'){

closegraph();

goto z;}else{exit(1);}

}

case 3: // search

{

gotoxy(60,25);

clearviewport();

rectangle(10,10,630,470);

setbkcolor(DARKGRAY);

textbackground(3);

textcolor(5);

clrscr();

char ans;

ifstream f;

stud s;

char name[20];

char address[20];

unsigned int ph_no;

f.open(“rec”,ios::in|ios::binary);

cout<
getchar();

closegraph();

exit(1);

}

default:

goto z;

}

}

}

}


Please do +1, Like, Share, Send, Tweet, Stumble Upon this page to support us.

C++ Project on Banking System



Banking System

#include<iostream.h>
#include<fstream.h>
#include<process.h>
#include<string.h>
#include<stdlib.h>
#include<stdio.h>
#include<ctype.h>
#include<conio.h>
#include<dos.h>


//===========================================================
// THIS CLASS CONTAINS FUNCTIONS RELATED TO DRAW BOX ETC.
//===========================================================

class shape
{
public :
void line_hor(int, int, int, char);
void line_ver(int, int, int, char);
void box(int,int,int,int,char);
};

//===========================================================
// THIS CLASS CONTROL ALL THE FUNCTIONS IN THE MENU
//===========================================================

class control
{
public :
void main_menu(void);
void help(void);
private:
void edit_menu(void);
};

//===========================================================
// THIS CLASS CONTAINS FUNCTIONS RELATED TO INITIAL DEPOSIT
//===========================================================

class initial
{
public :
void add_to_file(int,char t_name[30],char t_address[60],float);
void display_list(void);
void delete_account(int);
void update_balance(int,float);
void modify(void);
int last_accno(void);
int found_account(int);
char *return_name(int);
char *return_address(int);
float give_balance(int);
int recordno(int);
void display(int);
private:
void modify_account(int,char t_name[30],char t_address[60]);
void box_for_list(void);

int accno;
char name[30],address[60];
float balance;
};

//===========================================================
// THIS CLASS CONTAINS FUNCTIONS RELATED TO TRANSACTIONS
//===========================================================

class account
{
public :
void new_account(void);
void close_account(void);
void display_account(void);
void transaction(void);
void clear(int,int);
private :
void add_to_file(int,int,int,int,char,char t_type[10],float,float,float);
void delete_account(int);
int no_of_days(int,int,int,int,int,int);
float calculate_interest(int,float);
void display(int);
void box_for_display(int);
int accno;
char type[10]; //Cheque or Cash
int dd,mm,yy; //Date
char tran ; // Deposit or withdrawl
float interest,amount,balance;
};

//===========================================================
// FUNCTION TO DRAW HORIZONTAL LINE
//===========================================================

void shape::line_hor(int column1,int column2,int row,char c)
{
for(column1;column1< =column2;column1++)
{
gotoxy(column1,row);
cout< }
}

//===========================================================
// FUNCTION TO DRAW VERTICAL LINE
//===========================================================

void shape::line_ver(int row1,int row2,int column,char c)
{
for(row1;row1 {
gotoxy(column,row1);
cout< }
}

//============================================================
// FUNCTION TO DRAW BOX LINE
//============================================================

void shape::box(int column1,int row1,int column2,int row2,char c)
{
char ch=218;
char c1,c2,c3,c4;
char l1=196,l2=179;
if(c==ch)
{
c1=218;
c2=191;
c3=192;
c4=217;
l1=196;
l2=179;
}
else
{
c1=c;
c2=c;
c3=c;
c4=c;
l1=c;
l2=c;
}
gotoxy(column1,row1);
cout< gotoxy(column2,row1);
cout< gotoxy(column1,row2);
cout< gotoxy(column2,row2);
cout< column1++;
column2–;
line_hor(column1,column2,row1,l1);
line_hor(column1,column2,row2,l1);
column1–;
column2++;
row1++;
row2–;
line_ver(row1,row2,column1,l2);
line_ver(row1,row2,column2,l2);
}

//============================================================
// FUNCTION TO DISPLAY MAIN MENU AND CALL OTHER FUNCTIONS
//============================================================

void control::main_menu(void)
{
char ch;
while (1)
{
clrscr();
shape s;
s.box(10,5,71,21,219);
s.box(9,4,72,22,218);
textcolor(LIGHTBLUE+BLINK);
textbackground(BLACK);
gotoxy(32,7);
cprintf(” B A N K I N G “);
gotoxy(35,9);
cprintf(” OPTIONS “);
textcolor(LIGHTBLUE);
textbackground(BLACK);
gotoxy(30,11);
cout<=EXIT”;
gotoxy(5,5);
cout< =EXIT”;
textbackground(BLACK);
gotoxy(3,3);
for(int i=1;i< =76;i++) cprintf(” “);
textbackground(BLACK);
textcolor(LIGHTBLUE+BLINK); textbackground(BLACK);
gotoxy(30,3);
cprintf(“MODIFY ACCOUNT SCREEN”);
textcolor(LIGHTBLUE); textbackground(BLACK);
int d1,m1,y1;
struct date d;
getdate(&d);
d1=d.da_day;
m1=d.da_mon;
y1=d.da_year;
gotoxy(62,5);
cout< char ch;
display(t_accno);
account a;
do
{
a.clear(5,13);
gotoxy(5,13);
cout< FOR NO CHANGE”;
valid=1;
gotoxy(15,15);
gets(t_name);
strupr(t_name);
if(t_name[0]==’0′)
return;
if(strlen(t_name)>25)
{
valid=0;
gotoxy(5,23);
cprintf(“7NAME SHOULD NOT GREATER THAN 25″);
getch();
}
}while(!valid);
if(strlen(t_name)>0)
modified=1;
do
{
a.clear(15,16);
a.clear(5,23);
gotoxy(5,23);
cout< FOR NO CHANGE”;
valid=1;
gotoxy(15,16);
gets(t_address);
strupr(t_address);
if(t_address[0]==’0′)
return;
if(strlen(t_address)>55)
{
valid=0;
gotoxy(5,23);
cprintf(“7SHOULD NOT BLANK OR GREATER THAN 55″);
getch();
}
}while(!valid);
if(strlen(t_address)>0)
modified=1;
if(!modified)
return;
a.clear(5,23);
do
{
a.clear(5,18);
gotoxy(5,18);
cout< =EXIT”;
textbackground(BLACK);
gotoxy(3,3);
for(i=1;i< =76;i++)
cprintf(” “);
textbackground(BLACK);
textcolor(LIGHTBLUE+BLINK); textbackground(BLACK);
gotoxy(32,3);
cprintf(“OPEN NEW ACCOUNT”);
textcolor(LIGHTBLUE);
textbackground(BLACK);
int d1,m1,y1;
struct date d;
getdate(&d);
d1=d.da_day;
m1=d.da_mon;
y1=d.da_year;
int t_accno;
t_accno=ini.last_accno();
t_accno++;
if(t_accno==1)
{
ini.add_to_file(t_accno,”abc”,”xyz”,1.1);
ini.delete_account(t_accno);
add_to_file(t_accno,1,1,1997,’D',”INITIAL”,1.1,1.1,1.1);
delete_account(t_accno);
}
char t_name[30],t[10],t_address[60];
float t_bal=0.0, t_balance=0.0;
gotoxy(5,6);
cout< gotoxy(5,8);
cout<=EXIT”;
gotoxy(5,5);
cout< =EXIT”;
gotoxy(5,5);
cout< =EXIT”;
textbackground(BLACK);
gotoxy(3,3);
for(int i=1;i< =76;i++) cprintf(” “);
textbackground(BLACK);
textcolor(LIGHTBLUE+BLINK); textbackground(BLACK);
gotoxy(29,3);
cprintf(“TRANSACTION IN ACCOUNT”);
textcolor(LIGHTBLUE); textbackground(BLACK);
int d1,m1,y1;
struct date d;
getdate(&d);
d1=d.da_day;
m1=d.da_mon;
y1=d.da_year;
gotoxy(5,6);
cout<=EXIT”;
gotoxy(5,5);
cout< =EXIT”;
textbackground(BLACK);
gotoxy(3,3);
for(int i=1;i< =76;i++) cprintf(” “);
textbackground(BLACK);
textcolor(GREEN+BLINK); textbackground(BLACK);
gotoxy(30,3);
cprintf(“CLOSE ACCOUNT SCREEN”);
textcolor(LIGHTBLUE); textbackground(BLACK);
int d1,m1,y1;
struct date d;
getdate(&d);
d1=d.da_day;
m1=d.da_mon;
y1=d.da_year;
gotoxy(62,5);
cout< getch();
}

//===============================================================
//THIS IS MAIN FUNCTION CALLING HELP AND MAIN MENU
//FUNCTIONS
//===============================================================

void main(void)
{
control c;
c.help();
c.main_menu();
}

Please do +1, Like, Share, Send, this page to support us.

Digital Clock C++ Project



Digital Clock

#include<iostream.h>
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
#include<stdlib.h>


#define DOTCOLOR 14
#define DIGCOLOR 5
void disp();
void ELLIPS();
class Digital_Clock
{
private:
int X,Y;
int SIZE;
int COLOR;
int HEIGHT,WIDTH;
void *VER,*HOR;
public:
int style;
Digital_Clock();
Digital_Clock(int s,int c,int st);
void bar_make();
void PutDig(int x,int y,int n);
void DrawDig(int x,int y,int n);
~Digital_Clock();
};
Digital_Clock::Digital_Clock()
{
style=1;
SIZE=1;
HEIGHT=1;
WIDTH=12;
COLOR=15;
bar_make();
}
Digital_Clock::Digital_Clock(int s,int c,int st)
{
style=st;
SIZE=s;
COLOR=c;
HEIGHT=1;
WIDTH=6;
bar_make();
}
void Digital_Clock::bar_make()
{
int x,y,w,h;
int area;
x=10;
y=getmaxy()/2;
w=WIDTH*SIZE;
h=HEIGHT*SIZE;
setfillstyle(style,COLOR);
bar(x+h,y,x+w-h,y+h);
setcolor(COLOR);
line(x,y+h/2,x+h,y);
line(x,y+h/2,x+h,y+h);
floodfill(x+h/2,y+h/2,COLOR);
setcolor(COLOR);
line(x+w-h,y,x+w+-h+h,y+h/2);
line(x+w-h,y+h,x+w-h+h,y+h/2);
floodfill(x+w-h+h/2,y+h/2,COLOR);
area=imagesize(x,y,x+w,y+h);
HOR=malloc(area);
getimage(x,y,x+w,y+h,HOR);
putimage(x,y,HOR,XOR_PUT);
x=getmaxx()/2;
y=10;
h=SIZE*WIDTH;
w=HEIGHT*SIZE;
bar(x,y+w,x+w,y+h-w);
setcolor(COLOR);
line(x,y+w,x+w/2,y);
line(x+w,y+w,x+w/2,y);
floodfill(x+w/2,y+w/2,COLOR);
setcolor(COLOR);
line(x,y+h-w,x+w/2,y+h);
line(x+w,y+h-w,x+w/2,y+h);
floodfill(x+w/2,y+h-w/2,COLOR);
area=imagesize(x,y,x+w,y+h);
VER=malloc(area);
getimage(x,y,x+w,y+h,VER);
putimage(x,y,VER,XOR_PUT);
}
void Digital_Clock::PutDig(int x,int y,int n)
{
int num,gap,qu,rem;
gap=(SIZE*HEIGHT);
num=n;
if(num==62)
{
DrawDig(x,y,62);
}
if(num==63)
{
DrawDig(x,y,63);
}
if(num>=0&&num=10&&num {
qu=num/10;
rem=num%10;
DrawDig(x,y,qu);
DrawDig(x+WIDTH*SIZE+HEIGHT*SIZE+gap,y,rem);
}
}
void Digital_Clock::DrawDig(int x,int y,int n)
{
int H[10][3]={1,0,1,
0,0,0,
1,1,1,
1,1,1,
0,1,0,
1,1,1,
1,1,1,
1,0,0,
1,1,1,
1,1,1};
int ph[2][3]={1,1,0,
1,1,0};
int pv[2][4]={1,1,1,0,
1,1,1,1};
int V[10][4]={1,1,1,1,
0,1,0,1,
0,1,1,0,
0,1,0,1,
1,1,0,1,
1,0,0,1,
1,0,1,1,
0,1,0,1,
1,1,1,1,
1,1,0,1};
int HX[3]={x,x,x};
int HY[3]={y,y+WIDTH*SIZE,y+2*WIDTH*SIZE};
int VX[4]={x-(HEIGHT*SIZE)/2,x+WIDTH*SIZE-(HEIGHT*SIZE)/2,x-(HEIGHT*SIZE)/2,x+WIDTH*SIZE-(HEIGHT*SIZE)/2};
int VY[4]={y+(HEIGHT*SIZE)/2,y+(HEIGHT*SIZE)/2,y+WIDTH*SIZE+(HEIGHT*SIZE)/2,y+WIDTH*SIZE+(HEIGHT*SIZE)/2};
int i;
setfillstyle(1,getpixel(x-1,y-1));
bar(x-(SIZE*HEIGHT)/2,y,x+WIDTH*SIZE+(SIZE*HEIGHT)/2,y+2*SIZE*WIDTH+HEIGHT*SIZE);
if(n==62)
{
for(i=0;i {
if(ph[0][i]==1)
{
putimage(HX[i],HY[i],HOR,XOR_PUT);
}
}
for(i=0;i {
if(pv[0][i]==1)
{
putimage(VX[i],VY[i],VER,XOR_PUT);
}
}
}
else if(n==63)
{
for(i=0;i {
if(ph[1][i]==1)
{
putimage(HX[i],HY[i],HOR,XOR_PUT);
}
}
for(i=0;i {
if(pv[1][i]==1)
{
putimage(VX[i],VY[i],VER,XOR_PUT);
}
}
}
else
{
for(i=0;i {
if(H[n][i]==1)
putimage(HX[i],HY[i],HOR,XOR_PUT);
}
for(i=0;i12)
p.PutDig(500,y,62);
else
A.PutDig(500,y,63);
while(!kbhit())
{
gettime(&t);
if(th!=t.ti_hour)
{
th=t.ti_hour;
h.PutDig(20,y,t.ti_hour);
}
if(tm!=t.ti_min)
{
tm=t.ti_min;
m.PutDig(220,y,t.ti_min);
}
if(ts!=t.ti_sec)
{
ts=t.ti_sec;
s.PutDig(380,y,t.ti_sec);
drawdot();
}
}
getch();
}

void drawdot()
{
int x,y,gap,size,c;
gap=8;
size=10;
x=170;
y=200;
setfillstyle(1,color);
bar(x+gap,y+gap,x+gap+size,y+gap+size);
bar(x+gap,y+8*gap,x+gap+size,y+8*gap+size);
bar(x+gap+170,y+gap,x+gap+size+170,y+gap+size);
bar(x+gap+170,y+8*gap,x+gap+size+170,y+8*gap+size);
delay(1);
}
float x,y;
int xc,yc;
void ELLIPS()
{
int a,b;
long double p1,p2;
xc=getmaxx()/2-20;
yc= getmaxy()/2;
a=getmaxx()-340;
b= 120;
x=0;y=b;
disp();
p1=(b*b)-(a*a*b)+(a*a)/4;
while((2.0*b*b*x) {
x++;
if(p1(2.0*a*a*y))
{
y++;
if(p2>0)
p2=p2+(a*a)-(2.0*a*a*y);
else
{
x–;
p2=p2+(2.0*b*b*x)-(2.0*a*a*y)+(a*a);
}
disp();
y=-y;
disp();
y=-y;
}

}
void disp()
{
putpixel(xc+x,yc+y,5);
putpixel(xc-x,yc+y,5);
putpixel(xc+x,yc-y,5);
putpixel(xc+x,yc-y,5);
}

Please do +1, Like, Share, Send, this page to support us.

C++ Project for Baloon Shooting Game



Baloon Shooting Game

# include "graphics.h"
# include "conio.h"
# include "stdio.h"
# include "stdlib.h"
# include "dos.h"
#define ARROW_SIZE 7
#define BALLOON_SIZE 3
// downloaded from www.indiaexam.in
int flag_arrow=0,flag_balloon=1,count_arrow=6,count_balloon=10;
void *balloon,*bow,*arrow,*burst;
void *clear_balloon,*clear_burst;
void draw_balloon(int ,int );
void draw_burst ( int x, int y );
void draw_bow(int x,int y);
void draw_arrow(int x, int y);
void shoot(int *x, int *y);
int testkeys();
void fly(int *x, int *y);
void start();

void main()
{
int gmode = DETECT, gdriver , area ;
initgraph ( &gmode, &gdriver, “c:tcbgi ” ) ;
setbkcolor(1);
start();
int maxx = getmaxx() ;
int maxy = getmaxy() ;
int p=400,q=300,m=100,n=100,x=m,y=n,key,score=0,finish=0,level=1,l_flag=1;
char score1[5],ch,cnt_ball[5],char_level[2];

rectangle ( 0, 0, maxx, maxy – 10 ) ;

draw_burst(200,300);
area=imagesize(0,0,32,24);
burst=malloc(area);
getimage(200-16,300-12,200+16,300+12,burst);
putimage(200-16,300-12,burst,XOR_PUT);

draw_balloon(p,q);

area=imagesize(p-4*BALLOON_SIZE,q-5*BALLOON_SIZE,p+4*BALLOON_SIZE,q+7*BALLOON_SIZE);
balloon=malloc(area);

getimage(p-4*BALLOON_SIZE,q-5*BALLOON_SIZE,p+4*BALLOON_SIZE,q+7*BALLOON_SIZE,balloon);
putimage(p-4*BALLOON_SIZE, q-5*BALLOON_SIZE, balloon, COPY_PUT);

draw_arrow(x ,y );
area = imagesize(x, y-ARROW_SIZE, x+(6*ARROW_SIZE), y+ARROW_SIZE);
arrow=malloc(area);
getimage(x, y-ARROW_SIZE, x+(6*ARROW_SIZE), y+ARROW_SIZE,arrow);
putimage(x, y-ARROW_SIZE,arrow,XOR_PUT);

draw_bow(x,y);
area=imagesize(x+25,y-65,x+66,y+65);
bow=malloc(area);
getimage(x+25,y-65,x+66,y+65,bow);

if ( balloon == NULL || burst == NULL || bow == NULL )
{
printf( “Insufficient memory… Press any key ” ) ;
getch() ;
closegraph() ;
restorecrtmode() ;
exit( 0 ) ;
}
// downloaded from www.indiaexam.in
while (!finish)
{
settextstyle(8,0,1);
setusercharsize(4,4,3,3);
outtextxy(getmaxx()/2-100,5,”LEVEL : “);
itoa(level,char_level,10);
setfillstyle(0,0);
bar(getmaxx()/2+40,15,getmaxx()/2+70,45);
outtextxy(getmaxx()/2+50,5,char_level);

rectangle(5,360,250,460);

if( flag_balloon && count_balloon>0 )
fly( &p, &q );
else
{
q = 400;
flag_balloon = 1;
}

if( kbhit() )
{
key = testkeys();
if(key==77)
flag_arrow = 1;
}

if( key == 27 )
break;
if (key == 80 &&!flag_arrow)
{
x=125;
putimage(x,y-65,bow,XOR_PUT);
if(y70)
y-=25;
putimage(x,y-65,bow,XOR_PUT);
draw_bow(x-25,y);
key=0;
}
if(count_arrow > 0 && count_balloon > 0)
{
if(score==100 && l_flag==1)
{
level=2;
count_balloon=8;
count_arrow=6;
l_flag=2;
}
if(score==180 && l_flag==2)
{
level=3;
count_balloon=6;
count_arrow=6;
l_flag=0;
}
if( key == 77 || flag_arrow)
{
shoot(&x,&y);
draw_bow(m,y);
if(x>(p-12) && x(q-15) && y {
putimage(p-16,q-12,burst,COPY_PUT);
sound(1500);
delay(800);
nosound();
putimage(p-16,q-12,burst,XOR_PUT);
count_balloon–;
settextstyle(10,0,1);
setusercharsize(30,70,20,70);
outtextxy(20,380,”BALLOONS LEFT:”);
setfillstyle(0,0);
bar(200,370,230,400);
itoa(count_balloon,cnt_ball,10);
outtextxy(200,380,cnt_ball);
flag_balloon=0;
score+=20;
itoa(score,score1,10);
setfillstyle(0,0);
bar(190,getmaxy()-50,230,getmaxy()-30);
setcolor(RED);
outtextxy(20,getmaxy()-50,”SCORE : “);
outtextxy(190,getmaxy()-50,score1);
}

key=0;
}
}
else
{
clearviewport();
setbkcolor(9);
setcolor(10);
settextstyle(4,0,7);
setusercharsize(120,50,120,40);
outtextxy(getmaxx()/2-220,getmaxy()/2-180,”GAME OVER”);

settextstyle(8,0,1);
setusercharsize(50,60,40,50);
if(count_arrow outtextxy(getmaxx()/2-100,getmaxy()/2-70,”NO MORE ARROWS”);

if(count_balloon590)
{
*x=155;
flag_arrow=0;
count_arrow–;
settextstyle(10,0,1);
setusercharsize(30,70,20,70);
outtextxy(20,400,”ARROWS LEFT :”);
setfillstyle(0,WHITE);
bar(200,400,220,425);
itoa(count_arrow,cnt_arrow,10);
outtextxy(200,400,cnt_arrow);
}

}
void draw_arrow(int x, int y)
{
setlinestyle(0,0,2);
moveto(x, y);
linerel(6*ARROW_SIZE, 0);
linerel(-2*ARROW_SIZE, -1*ARROW_SIZE+1);
linerel(0, 2*ARROW_SIZE-1);
linerel(2*ARROW_SIZE, -1*ARROW_SIZE);
}

int testkeys()
{
union REGS ii, oo ;
ii.h.ah = 0 ;
int86 ( 22, &ii, &oo ) ;
/* if ascii code is not 0 */
if ( oo.h.al )
return ( oo.h.al ) ;
else
return ( oo.h.ah ) ;
}

void fly(int *x, int *y)
{
int x1;
putimage(*x-4*BALLOON_SIZE, *y-5*BALLOON_SIZE, balloon, COPY_PUT);
delay(20);
char cnt_ball[5];
putimage(*x-4*BALLOON_SIZE, *y-5*BALLOON_SIZE, balloon, XOR_PUT);
*y-=BALLOON_SIZE;

if(*y{
*y=400;
x1=450+rand()%150;
*x=x1;
count_balloon–;
settextstyle(10,0,1);
setusercharsize(30,70,20,70);
outtextxy(20,380,”BALLOONS LEFT:”);
setfillstyle(0,0);
bar(200,370,230,400);
itoa(count_balloon,cnt_ball,10);
outtextxy(200,380,cnt_ball);
}
}

void start()
{
setbkcolor(0);
settextstyle(7,0,0);
outtextxy(10,400,” PRESS ANY KEY TO CONTINUE….”);
settextstyle(1,0,0);
setcolor(4);
setusercharsize(25,15,20,4);
outtextxy(85,120,”BALLOON SHOOTING”);
float octave[7] = { 130.81, 146.83, 164.81, 174.61, 196, 220, 246.94};
while( !kbhit() )
{
sound( octave[ random(7) ]*4 );
delay(300);
}
nosound();
getch();
clearviewport();
rectangle(1,1,638,478);
settextstyle(3,0,1);
setusercharsize(50,30,50,30);
outtextxy(150,10,”INSTRUCTIONS”);
setbkcolor(LIGHTBLUE);
settextstyle(1,0,1);
setusercharsize(40,70,20,20);
outtextxy(10,70,”1. You can play three levels.”);
outtextxy(10,110,”2. You can move the bow UP and DOWN with the help of arrow keys.”);
outtextxy(10,150,”3. Press right arrow key to shoot the arrow.”);
outtextxy(10,190,”4. You score 20 points every time you shoot the balloon.”);
outtextxy(10,230,”5. First level has 6 arrows and 10 balloons.”);
outtextxy(10,270,”6. You require to score 100 points to enter the second level.”);
outtextxy(10,310,”7. Second level has 6 arrows and 8 balloons.”);
outtextxy(10,350,”8. You require to score 200 points to enter the third level.”);
outtextxy(10,390,”9. Third level has 6 arrows and 6 balloons.”);
settextstyle(7,0,1);
outtextxy(150,430,”PRESS ANY KEY TO CONITINUE”);

getch();
setusercharsize(1,1,1,1);
settextstyle(0,0,0);
setbkcolor(YELLOW);
clearviewport();
}

Please do +1, Like, Share, Send,  this page to support us.

Make Money Online With Fineptc


Make Money Online With Fineptc







Fineptc.com is a high quality paid-to-click business. What this means for you is that they will pay you hard cash for simply viewing our sponsored advertisements. All you have to do is create a free account and then spend a few minutes each day viewing their advertisers' websites to increase your account balance. When you have earned $10,000 account balance, you can request withdraw to Alertpay or Paypal and they will send you a cash payment!


Get Paid Cash To Click Links!
$10 Per PTC Click
50% Affiliate Earnings For Referrals
Links Available Daily, Guaranteed
Reputable Business Ownership
Quality Member Support
Excellent Advertising Rates
Free To Join, Free To Earn!


Till now I have earned around 6000$ and waiting for it to complete 10000$ so that i can withdraw it. There is no Guarantee if they will  pay us or not still there is no risk of trying it as it is free of cost. You just have to give 5 minutes to view their advertisement and i will suggest you to make more and more referral so that you can earn more .
Thank You!
Tags:- make money online,www.faneptc.com,fineptc,make money online with fineptc,how to make money online,

Tuesday 11 December 2012

Upcoming Bollywood Movies 2012-2013 & Release Dates(Updated)


Upcoming Bollywood Movies 2012-2013 & Release Dates(Updated)





Here is the list of New and Latest Upcoming Bollywood Movies 2012 & 2013 release dates in Hindi this list is subject to changes as it depends on censor certification.At times the release dates of various upcoming bollywood movies may get postponed due to various reasons. Below is the Bollywood Movies 2012-2013 calendar this is an incomplete list and will be updated as the year goes by.


  





    Movie Name                                               Release Dates

Jab Tak Hain Jaan (SRK)                               November 13 2012    
Son of Sardar                                                November 13 2012
Talaash (Aamir Khan)                                    Nov 30 2012
Khiladi 786                                                    December 7 2012
Dabangg 2                                                     December 21 2012
Table No 21                                                  Jan 4 2013
Matru Ki Bijlee Ka Mandola                           Jan 11 2013
Inkaar                                                           Jan 18 2013
Race 2                                                          Jan 25 2013
Kai Po Che                                                   Feb 22 2013
Special Chabbis                                             Feb 8 2013
Nautanki Saala                                              Feb 8 2013
Murder 3                                                       Feb 15 2013
Chasme Baddoor                                            Feb 22 2013
Saheb Biwi Aur Gangster Returns                    March 8 2013
Gulab Gang                                                    March 8 2013
Himmatwala                                                   March 29 2013
Ek Thi Daayan                                               April 18 2013
Shoot Out at Wadala                                       May 1 2013
Yeh Jawani Hai Deewani                                 May 31 2013
Ghanchakkar(Vidya Balan)                              June 21 2013
Lootera                                                          July 5 2013
Bhaag Milkha Bhaag                                       July 12 2013
Once Upon A Time In Mumbaai 2                   Aug 8 2013
Satyagraha                                                     Aug 15 2013
Naam Hai Boss                                               Aug 2013
Dhoom 3                                                        September 2013
Besharm (Ranbir)                                            October 2 2013
Ragini MMS 2                                                October 11 2013
Namak                                                           Oct 11 2013
Krrish 3                                                          November 2013
P.K (Aaamir Khan)                                          Dec 2013

Tags: bollywood movies 2012, bollywood movies calendar, latest bollywood movies, new movies, top hindi movies 2012, upcoming bollywood movies

Khiladi 786 Review


Khiladi 786 Movie Review


Ratings:2/5 Khiladi 786  Review By:Rajeev Masand 
Site:CNN IBN

Directed by first-timer Ashish Mohan, an erstwhile assistant of Rohit Shetty, Khiladi 786 is funny, but only in spurts. For the most part, it’s as enjoyable as watching a kitten struggle to shake off the firecracker that some mean kid tied to its tail. If you laugh, they’re probably guilty laughs – how can you be amused by such cruelty? Khiladi 786, with its pedestrian humor, inane plot, and hammy performances, begs the question: haven’t we had enough? How many more times will charismatic actors help stupid films get made?I’m going with a generous two out of five for Khiladi 786. Akshay Kumar fans may not complain. The rest might prefer the company of an Asprin.
Visit Site for more

Ratings:3.5/5 Khiladi 786   Review By:Taran Adarsh 
Site:Bollywood Hungama

KHILADI 786 is an old-school wacky potboiler. There isn't an iota of logic here and one is not even looking for intelligence, rationale or justification either. The film is packed with ingredients that constitute a wholesome entertainer such as humor, South-styled stunts with the one-man army outsmarting a bunch of deadly goons and of course, visually enticing songs every 15/20 minutes, but the writing has its share of hiccups... On the whole, KHILADI 786 is not for purists, but for lovers of hardcore masala films completely. If zany amusement, wacky humor and over the top entertainers is what you enjoy, this one's for you. Go, have fun!
Visit Site for more
Ratings:2/5  Review By: Anupama Chopra 
Site:Hindustan Times (Star World)
All through, the funny bits were rare and mostly unintentional. Akshay swaggers above this messy material, which includes African-American characters and dancers in blackface. If I wasn’t so exhausted, I would have been offended. Box office figures suggest that many people enjoy this school of cheerfully moronic cinema, but Khiladi 786 really isn’t my idea of a good time.
Visit Site for more
Ratings:3/5  Review By: Madhureeta Mukherjee 
Site:TimesofIndia(TOI)

In Khiladi 786 Debutant director Ashish R Mohan's masala potboiler style is unmistakably reminiscent of his guru, Rohit Shetty's films. There are flying cars, flying bodies, flying fists and a flying Singh too. He shows flair for comedy, but for a film titled Khiladi', it lacks hard-core action, heat and the adrenalin rush that is synonymous with Akshay's Khiladi series (maybe intentionally). For those looking for some logic-less laughtime, groovy tunes topped with some todh-podh - this one could bring some action to your weekend.
Visit Site for more
Ratings:----  Review By: Komal Nahta 
Site:ETC
On the whole, Khiladi 786 has music as its main plus point but that will not be enough to ensure a good and fruitful run at the box-office as it entertains the audience in spurts only. Business in single-screen cinemas may be good but that in the multiplexes will not be upto the mark. After a fair weekend, collections will drop fast and furiously from the fourth day on­wards. Losing.
Visit Site for more

Ratings:0.5/5  Review By: Shubhir Rishi 
Site:Rediff
These movies come under a category called -- SO-bad-I-want-to-be-The-Punisher. Khiladi 786 is one such movie. This is no Rowdy Rathore, folks, this is just a gimmick. True, they did infuse it with a lot of other delightful innuendos, and some reference to comic books, but at the same time, ruined with unclever lines and expectant looks. Debut director Ashish R Mohan does try, but everything becomes dim and dull because of a really weak script, with unacceptable dialogues which are constantly in bad taste, and a single-finger synthesiser which is utilised for filling in as background score. This is a wannabe funny movie, an assault on our collective intellect.
Visit Site for more

Ratings:1.5/5  Review By:Saibal Chaterjee 
Site:NDTV

Khiladi 786 has nothing new to offer. It is cut from the same cloth that have yielded many of Akshay Kumar's recent vehicles. These films have sought to cash in on his rough and rowdy screen persona. Khiladi 786 does more of the same. In short, it is another outright assault on the senses. The comedy is crass, the acting borders on the slapstick, and the general air that hangs over the film is one of utter lunacy. The loudness is accentuated manifold by an ear-splitting background score.
Visit Site for more
Ratings:1/5  Review By: Shubhra Gupta 
Site:Indian Express

I went into `Khiladi 786’ with every intention of being amused. But within a few minutes, I knew this yet-another-wannabe-`Dabangg’-style comic actioner was going to be a long, grit-your-teeth-and-bear-it haul : the film went from bad to terrible, and stayed that way.
Visit Site for more
Ratings:2/5  Review By: Kanika Sikka 
Site:DNA

Khiladi 786 has all the conventional elements that a typical masala film has – a bad cop, a runaway bride, a lachar goon, songs after every few minutes…Yet, it fails to create an impact. The story by Himmesh Reshammiya is a complex mix of innumerable films and it would be best if you don’t even judge it. Indeed, I’d like to believe he never intended to write a logical story or a telling tale. If you are one of those who tries to make sense out of every movie, mind you, this is definitely not your kind of a film. The movie can only be fun if you leave your brains at home. If you watch it, you might land up having a little fun (provided you ignore the second half), if you don’t, just save yourself some money and time.
Visit Site for more
Ratings:1/5  Review By: Ananya Bhattacharya 
Site:Zee News

Himesh Reshammiya’s story zigzags through concealment of identities, servants trying to bring their employer’s empire down, and a wedding planner hoping that his endeavour doesn’t go in vain. But honestly, he could just have not bothered to go ahead with this waste of talent, money, and whatnot. That Akshay Kumar as an actor is an exceptionally talented one has been proved time and again – given the man has a decent story to perform in. Not this one, though. Watch the film if you swear by Akshay Kumar. If you don’t, you’d be ill-advised to go into the theatres.
Visit Site for more
Ratings:2.5/5  Review By:Roshni Devi 
Site:Koimoi

What’s Good: The comedy & funny dialogues; the action; some performances. What’s Bad: The stale story; Himesh & Akshay’s hamming; the forced songs. Loo break: None. Watch or Not?: For Akshay Kumar’s action and the humour, this one’s worth a one-time watch.Khiladi 786 is a mish-mash of Akshay Kumar’s Welcome and Ajay Devgn’s Son Of Sardaar. Even if it doesn’t take the best of both worlds, you’ll end up having enough laughs in the theatre, though it won’t be memorable any time after that.
Visit Site for more
Ratings:2/5 Review By: Rumanna Ahmed 
Site:Yahoo
Khiladi 786' has a plot, okay may be a mishmash of several other plots that we have seen before. There are some fun moments in the film but with a wafer-thin plot, the story seems to drag along for far too long. Akshay sleepwalks through a role that he has done one too many times; there is not even a slight attempt at any form of innovation. Watch it if you are a die-hard Akshay Kumar fan and are willing to overlook the complete lack of any clever humour.
Visit Site for more

Tags: Labels: anupama chopra, bollywood hungama, cnn ibn, DNA, etc, hindustan times,IndianExpress, koimoi, komal nahta, ndtv, rajeev masand, Rediff, Shubhra Gupta, Taran Adarsh, times of india, toi, yahoo, Zee News

Thursday 6 December 2012

Awesome Animated Emoticons for Facebook Chat 2012



Awesome Animated Emoticons for Facebook Chat 2012
                                    

 So these are animated that’s why you will love them sharing with all your friends.  In the top image I just shared these animated emoticons with my friend Sahil Singla so I think he loved these codes and I loved sharing with all of you.

So using these is just simple as you already used previous codes just copy only the codes from below paste them in chat and than code will be automatically be converted into animated emoticons. So check below code and have fun sharing them.

Animated Emoticons Codes for Facebook Chat :

[[126236287388324]] – Love Code
[[126125527399400]] – Muaaach Kissing :*
[[126134560731830]] – Hoam Ngantuk Rek
[[126261164052503]] – Hula Hula
[[126221767389776]] – Spin Heart
[[126214010723885]] – Stroke
[[126386227373330]] – Oversleep Insomnia
[[389448181885]] – Week
[[126539730695178]] – Love Shame
[[126540207361797]] – Love Smail
[[126232017388751]] – Broken heart
[[126229700722316]] – Pikachu
[[126392380706048]] – ready sleep
[[126276450717641]] – blast love ..tiupan cinta
[[126391564039463]] – Stress
[[110566632320002]] – Cat listening to music
[[126230590722227]] – Super Mario
[[126213110723975]] – Hello Ketty
[[126227960722490]] – kiss
[[126230880722198]] – Green Worm Ani
[[126229327389020]] – Rose Red Ani
[[127868980561350]] – Heart beat
[[126220920723194]] – Santa
[[126216480723638]] – butterfly blue
[[126132024065417]] – Heart rotate ani
[[126278187384134]] – O Yeah Hippo
[126217194056900]] – i ♥ u
[[389449726885]] – i love you
[[126540207361797]] – Smileys Inlove
[[398699314236]] – Teddy n ♥
[[110780922298250]] – Heart on Fire
[[127878643893717]] – hand Clap
[[398570519236]] – mickey at Sleep
[[394930959230]] – Smileys Zzzz
[[126398717372810]] – Converse
[[110563818986950]] – Wew
[[110566395653359]] – cat licking screen

Scan Suspicious Files with Different Antivirus Engines Online


Scan Suspicious Files with Different Antivirus Engines Online


Suspicious files are all over the internet, you download something and you come across another virus or malware which is totally unknown to your Antivirus Engine, so that does not make any sense that you are having the best Antivirus Engine in the world but sometimes that too fails to detect that kind of virus. So what we can do in that case well we go for something which can search your file using all Antivirus Engine available.
That’s right searching and scanning for malware and viruses through all Antivirus Engines together can be done really easily with VirusTotal. So what VirusTotal says on about them.


VirusTotal is a service that analyzes suspicious files and URLs and facilitates the quick detection of viruses, worms, Trojans, and all kinds of malware detected by antivirus engines.





So now this is what you will see when you will visit their website a simple online file Uploader where you can submit a file or scan a website or File through URL. You can also see a Service Load text written above in the image that simply scans the whole traffic on their website and tell you that how much load they have on their server.

Now theirs a small problem with this service that they have a file size limited to 20MB per file, so from my point of view that’s good because it makes their website free for everyone as they do not have much load on their server.

So now click on Choose File and than click on Send File and you will see another window light boxed in front of you saying something like below .:


                              

So now your file is being upload and they will scan your file with their all Antivirus Engines and brief your results in few seconds like below .:




So now you can see that how many Antivirus Engines have detected this file as an virus and of which category. So from the above image you can see that 5 Antivirus out of 43 detects it as a Virus so now if you want to see which Antivirus is detecting it and in which category than click on View Last Report.


Wednesday 5 December 2012

Nokia Lumia 620 unveiled, to be available starting January for $250

Nokia Lumia 620 unveiled, to be available starting January for $250


Nokia just introduced its latest Windows Phone 8 handset at the Le Web Conference in Paris. Marking the lower end of the Windows Phone 8 range the phone will be offered in seven colors and supports exchangeable shells in gloss and matte finishes depending on the color you chose.





The phone supports Nokia’s exclusive range of apps and will come with Nokia Music. Additionally, the phone supports NFC to work with Nokia’s wide range of accessories. The device specifications are mentioned below :

  • Display: 3.8” TFT WVGA 800×480, ClearBlack
  • Memory: 512MB RAM (8GB internal memory, Micro SD support up to 64GB)
  • Camera: 5Mpix autofocus, LED flash; Video capture: HD 720p@30fps; VGA front camera
  • Size & weight: 115.4 x 61.1 x 11.02 mm; 127g (including battery)
  • Connectivity: NFC, WLAN 802.11 a/b/g/n 2.4Ghz + 5Ghz, Bluetooth 3.0, GPS/A-GPS, Glonass, micro-USB, 3.5mm audio connector (AHJ + WP Controls)
  • Processor: 1 GHz Dual Core Snapdragon (TM) S4
  • Battery Talk time: (GSM/WCDMA) Up to 14.6 h/ up to 9.9 h; Standby time: Up to 330 h

The phone will be available starting January at a suggested price of $249. APAC markets and Africa are expected to get it first so we should expect this one in India soon at a very competitive price point.

Sony Xperia E and Xperia E dual with 3.5-inch display, 1GHz processor announced


Sony Xperia E and Xperia E dual with 3.5-inch display, 1GHz processor announced



Sony has announced Xperia E and Xperia E dual, new Android Smartphones in the Xperia series. The Xperia E is the single SIM phone, while the Xperia E dual comes with dual-SIM support. These phones have a 3.5-inch (320 x 480 pixels) TFT capacitive touch screen and is powered by a 1GHz Qualcomm Snapdragon MSM7227A processor similar to the Xperia J. Xperia E comes with Android 4.1 (Jelly Bean), while the Xperia E dual would launch on Android 4.0 (Ice Cream Sandwich) and is upgradable to Android 4.1 (Jelly Bean). These have a 3.2 megapixel camera with VGA video recording.



Sony Xperia E and E dual Specifications
  • 3.5-inch (480 x 320 pixels) TFT capacitive touch screen display
  • Dual SIM (Xperia E dual)
  • Xperia E - Android 4.1 (Jelly Bean)
  • Xperia E dual – Android 4.0 (Ice Cream Sandwich) (Upgradable to Android 4.1 Jelly Bean)
  • 1GHz Qualcomm Snapdragon MSM7227A processor
  • 11 mm thick and weighs 115.7 g
  • 3.2 megapixel camera
  • 3.5 mm audio jack, FM Radio with RDS
  • 3G, Bluetooth, WiFi b/g/n, DLNA, GPS / aGPS
  • 512MB RAM, 4 GB internal memory (2.2 GB user memory), up to 32 GB expandable memory with microSD
  • 1500 mAh battery

Panasonic Toughpad FZ-A1 10.1-inch Durable Android Tablet launched in India for Rs. 75,000


Panasonic Toughpad FZ-A1 10.1-inch Durable Android Tablet launched in India for Rs. 75,000




Panasonic has launched Toughpad FZ-A1, durable Tablet running on Android 4.0 (Ice Cream Sandwich) for business users. It has a 10.1-inch XGA (1024 x 768 pixels ) TFT touch screen display with anti-glare for reading even under sunlight and is powered by a 1.2GHz dual-core Marvell processor. It is Water and Dust proof and is IP65 certified. It has mono microphone and mono waterproof speakers, digitizer pen and comes with enhanced security features with dedicated security core that is FIPS 140-2 Level 2 compliant.

Panasonic Toughpad FZ-A1 Specifications

  • 10.1-inch XGA (1024 x 768 pixels ) TFT touch screen
  • Android 4.0 (Ice Cream Sandwich)
  • Water and Dust proof, IP65 certified
  • 5MP camera with LED flash, 2MP front-facing camera
  • 1GB DDR 2 RAM, 16GB Internal memory, expandable memory up to 32GB with microSD
  • Dedicated Security core – FIPS 140-2 Level 2 compliant
  • Drop resistant from a height of 120cm, MIL-STD 810G compliant
  • 3G (HSPA+ 21 Mbps), WiFi 802.11 a/b/g/n, Bluetooth v2.1, Satellite GPS, micro HDMI
  • 33.9Wh battery with up to 10 hours of battery life

The Panasonic Toughpad FZ-A1 is priced at Rs. 75,000 and is available across India.

Google Nexus 4 Unboxing



Google Nexus 4 Unboxing


Huge Selection and Amazing Prices. Free Home Delivery - Above Rs.300




The Nexus 4 is a mobile phone collaboration between Google and LG and was launched worldwide last week. Thanks to its incredible specifications and low price point, the handset sold out within minutes, and is now one of the most sought-after pieces of mobile tech, with phones currently changing hands for twice their original purchase price on auction sites. We managed to get our hands on one, and we’re going to inflict the usual unboxing treatment on it for your viewing pleasure.

  



The Nexus 4 has a quad-core 1.5GHz Snapdragon S4 processor and is backed up with 2GB of RAM. The phone is available with 8GB and 16GB internal storage, but no MicroSD card – so the 8GB model may be a little too restrictive for some download-loving users.


The Nexus 4 comes in quite a compact box, and inside there’s very little to report on. You get the user manual, data cable and charger (the cable links to the charger), as well as the little piece of metal which pops open the phone’s Micro SIM compartment. Surprisingly, there are no headphones in the box – presumably this is one area where Google and LG have cut costs in order to achieve that super-low retail price. It’s not a massive loss as most people will replace the bundled headphones with their own preferred pair anyway.

Box Contents
Nexus 4 phone
USB sync/charge cable
AC Adapter and cable
SIM ejection tool
Safety and Warranty information
Quick start guide


Considering the status of the phone, the packaging is a little underwhelming. Google has used the same kind of box design as it did for the Asus Nexus 7 tablet (although thankfully, it’s not quite as hard to open this time around), which is appealing but not quite as sexy as the packaging for Apple’s products.

Finally, Apple iTunes store is in India, buy a song for Rs 7


Finally, Apple iTunes store is in India, buy a song for Rs 7



After a long long wait, Apple on Tuesday finally extended the iTunes Store to India offering consumers the ability to purchase music, buy or rent movies.

The all-new website for iTunes store greets you with the message, “Now you can shop at the world’s No.1 music store. Which means you can browse and buy songs, albums and films anytime you want.”

Services:

                             
Until now, the Indian iTunes Store only featured some free books and podcasts. But now, you can buy everything–from Bollywood songs, Tamil film songs to even international music from all major labels.

Apple also launched its iTunes Match service in India, which allows users to store music, bought from sources other than iTunes, in iCloud. This service is priced at Rs 1,200 per year.

But, there are no TV shows listed, unlike various other international markets. And that’s the only disappointment so far.

Price:

Compared to other countries, pricing in India seems pretty reasonable. Single songs are priced between Rs 7 and Rs 15 and albums start from Rs 70. [On Flipkart, a single song costs you Rs 15]

Similarly, most movies are available for rent at Rs 80 in SD (Rs 120 in HD) and buy for Rs 290 in SD (Rs 490 in HD).

The iTunes Store debuted as the US-only iTunes Music Store in April 2003. It has since expanded to include movies and TV shows and until today was available in approximately 97 countries. In June, it added 12 Asian countries including Hong Kong, Singapore, Taiwan. But India did not feature in that list.

Check out the new Apple India iTunes store here.

For Android users: Log into FB Messenger with only name, mobile no

For Android users: Log into FB Messenger with only name, mobile no!




Facebook’s Messenger app for Android just got a a serious new upgrade. Users in India, Indonesia, Venezuela, Australia and South Africa can now sign up for the Messenger service with just their name and mobile number. Previously, to log into Facebook Messenger, you had to use your Facebook account.

Facebook made the announcement on their Newsroom.  Read It:

Starting today, you can create a Messenger account with just your name and phone number, and start messaging your mobile contacts.

Just install the app and tap Get Started to reach your contacts faster, start group conversations, share photos and more.

The app will then find your contacts who are using Messenger.

This change should put to rest all rumours of Facebook buying out WhatsApp. But what is evident is that Facebook is hoping to put up Messenger as a serious rival to WhatsApp.

The new Messenger allows users who don’t have a Facebook account to use the Messaging service and this is clearly part of Facebook’s strategy to expand into mobile.

As Facebook’s Q3 results for 2012 showed that mobile ads had finally worked for the site and helped bring in nearly 14 percent of the revenue for the site came from mobile ads. “I want to dispel this myth that Facebook can’t make money on mobile,” said CEO Mark Zuckerberg in a conference call with analysts. “This may (have seemed) true earlier this year because we hadn’t started trying yet.”

Clearly by making Messenger accessible to non-Facebook users on Android, Zuckerberg is sending out a strong message that the mobile arm of the social networking giant is only going to get bigger.

Manmohan unlikely to visit Pakistan in near future


Manmohan unlikely to visit Pakistan in near future



New Delhi: Prime Minister Manmohan Singh has made it clear that he has no intention of travelling to Pakistan in the near future, saying there should be conducive situation for it.

He conveyed this directly to Pakistan President Asif Ali Zardari in response to his invitation in July, sources said.

In a letter to Singh, Zardari had invited him to undertake the visit to his ancestral place Gah in Punjab on the occasion of Guru Nanak Jayanti on 28 November. Zardari had suggested that if Singh’s visit coincided with celebrations to mark the birth anniversary of Guru Nanak, it would be well received by the Pakistani people and reinforce the desire of both countries to promote inter-religious harmony.

“Our invitation for you to visit Pakistan is outstanding. Your visit will provide us an opportunity to take stock of our bilateral relations,” the Pakistan President had written.

Sources said that while India was willing to do business with Pakistan in aspects like economy and commerce, it would like to hold it responsible for not much progress on the issue of punishing those behind Mumbai attacks of 2008. India does not feel that the relationship would see any major transformation.

“What we are looking for is just normal relationship. It will have its costs and benefits,” a source said.

The comments assume significance as these come ahead of the planned visit of Pakistan’s Interior Minister Rehman Malik here next week. India is also working on plans to allow Pakistani judicial commission to visit here in connection with the Mumbai attack. India has conveyed to Pakistan that the issue would be considered positively and it is working out aspects like timing and terms under which the commission would take place.

 

SCROLL TO TOP