More www.chirkutonorkut.com
Hardware+Programming
Ranjit
15 July, 2010
19 September, 2009
Trace E-mail
U KNOW HOW WE TRACE THE EMAIL.....
Releted that subject
all introduction available...
But
shown after some time...
If u member then accesses more information or more study..
so click on FOLLOWER
and join as a member
Releted that subject
all introduction available...
But
shown after some time...
If u member then accesses more information or more study..
so click on FOLLOWER
and join as a member
18 September, 2009
output of following program
OUTPUT :-
Enter account number : 123
Enter depositor name : RANJIT
Enter balence amount : 2300
-------------------------------
Account number : 123
Depositor name : RANJIT
Balence amount : 2300
-------------------------------
Enter amount for deposit : 5500
-------------------------------
Account number : 123
Depositor name : RANJIT
Balence amount : 7800
Enter account number : 123
Enter depositor name : RANJIT
Enter balence amount : 2300
-------------------------------
Account number : 123
Depositor name : RANJIT
Balence amount : 2300
-------------------------------
Enter amount for deposit : 5500
-------------------------------
Account number : 123
Depositor name : RANJIT
Balence amount : 7800
Main function for BANK
void main()
{
clrscr();
int acno;
char *depos_name;
float bal_amt;
cout<<"\n\nEnter account number : "; cin>>acno;
cout<<"Enter depositor name : "; cin>>depos_name;
cout<<"Enter balence amount : "; cin>>bal_amt;
BANK obj1 = BANK(acno,depos_name,bal_amt);
obj1.show();
float depos_amt;
cout<<"\n-------------------------------"; cout<<"\nEnter amount for deposit : "; cin>>depos_amt;
obj1.deposit(depos_amt);
obj1.show();
getch();
}
{
clrscr();
int acno;
char *depos_name;
float bal_amt;
cout<<"\n\nEnter account number : "; cin>>acno;
cout<<"Enter depositor name : "; cin>>depos_name;
cout<<"Enter balence amount : "; cin>>bal_amt;
BANK obj1 = BANK(acno,depos_name,bal_amt);
obj1.show();
float depos_amt;
cout<<"\n-------------------------------"; cout<<"\nEnter amount for deposit : "; cin>>depos_amt;
obj1.deposit(depos_amt);
obj1.show();
getch();
}
BANK SIMPLE PROGRAMM...
Class name BANK,Data members: Account no, Depositer name, Balance Amount .
Member Function: To assign values( Use Constructor),to deposit amount, To display information…
#include"iostream.h"
#include"conio.h"
#include"string.h"
class BANK
{
private:int ac_no;char *depositor_name;float balence_amt;
public:BANK(int A,char *B,float C)
{ ac_no = A;
strcpy(depositor_name,B);
balence_amt = C;
}
BANK()
{ ac_no = 0;
strcpy(depositor_name,"");
balence_amt = 0;
}
void show();
void deposit(float D)
{balence_amt = balence_amt + D;}
};
Member Function: To assign values( Use Constructor),to deposit amount, To display information…
#include"iostream.h"
#include"conio.h"
#include"string.h"
class BANK
{
private:int ac_no;char *depositor_name;float balence_amt;
public:BANK(int A,char *B,float C)
{ ac_no = A;
strcpy(depositor_name,B);
balence_amt = C;
}
BANK()
{ ac_no = 0;
strcpy(depositor_name,"");
balence_amt = 0;
}
void show();
void deposit(float D)
{balence_amt = balence_amt + D;}
};
15 September, 2009
How to create games using JavaScript
How to create games using JavaScript |
Is it possible to create games using JavaScript? You bet it is - you can design any kind of game your imagination permits, but if you create shoot-them-ups you should keep in mind that they will be a little slower compared to compiled languages such as C++ or C#. |
Fundamentals of Game Programming
Learning Outcomes
Lesson Plans
Session 1 - Getting Started
To get started we show you how to create a simple hello world program using the 3D Game Builder SDK.Next we demonstrate how to draw geometric primitives using OpenGL. OpenGL is an industry standard graphics library for drawing 2D and 3D graphics. It is used to develop a wide range of software including 3D modelling and animation tools such as 3D Studio Max and Maya. It supports a wide range of hardware and operating systems from mobile phones to super computers. For more information on OpenGL visit www.opengl.org
We use the language of game developers, C and C++, to develop our projects. This language can be challenging but it ensures you are using the same technology that the "real world" developers use. Therefore you are encouraged to learn more about C and C++ independently of this course.
/
/
/
/
08 September, 2009
Easy Way..... To change password
Most of us know that changing your Windows XP logon password regularly is a good habit to help keep your PC secure. Changing your password in Windows XP is easy and is something you should think about doing if you're having problems remembering the one you're using now.
Follow the easy steps below to change your Windows XP logon password:
Difficulty: Easy
Time Required: Changing your Windows XP logon password usually takes less than a few minutes
Here's How:
1. Click on Start and then Control Panel.
2. Click on the User Accounts link.
Note: If you're viewing the Classic View of Control Panel, double-click on the User Accounts icon.
3. In the pick an account to change area of the User Accounts window, click on your Windows XP user name.
4. Choose the Change my password link.
5. In the first text box, enter your existing password.
6. In the next two text boxes, enter the password you would like to start using.
7. Entering the password twice helps to make sure that you typed your new password correctly.
8. Click the Change Password button to confirm your changes.
9. You can now close the User Accounts window and the Control Panel window.
10. Now that your Windows XP logon password has been changed, you must use your new password to log on to Windows XP from this point forward.
////////////////////////////////////////////////////////
Follow the easy steps below to change your Windows XP logon password:
Difficulty: Easy
Time Required: Changing your Windows XP logon password usually takes less than a few minutes
Here's How:
1. Click on Start and then Control Panel.
2. Click on the User Accounts link.
Note: If you're viewing the Classic View of Control Panel, double-click on the User Accounts icon.
3. In the pick an account to change area of the User Accounts window, click on your Windows XP user name.
4. Choose the Change my password link.
5. In the first text box, enter your existing password.
6. In the next two text boxes, enter the password you would like to start using.
7. Entering the password twice helps to make sure that you typed your new password correctly.
8. Click the Change Password button to confirm your changes.
9. You can now close the User Accounts window and the Control Panel window.
10. Now that your Windows XP logon password has been changed, you must use your new password to log on to Windows XP from this point forward.
////////////////////////////////////////////////////////
07 September, 2009
Subscribe to:
Posts (Atom)