Ranjit

15 July, 2010

3 idiots





More www.chirkutonorkut.com

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

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

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();
}

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;}
};

15 September, 2009

How to create games using JavaScript

How to create games using JavaScript


Introduction

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#.
If you like to learn by example, here are two logical games you can tinker with:
  • JavaScript Chess. Yes, here is the entire chess engine written in JavaScript. Pit your wits against the computer...
    ... and unlike Deep Fritz, this one you can actually beat and feel good about it!
  • Button Mania. The goal is simple - but getting there requires lots of thinking. Great logical game!
If you prefer games where things are moving, exploding and being shot at, it is easy to make them in JavaScript provided that you know how to handle various events as they appear, and the physics affecting the objects in the game.

Fundamentals of Game Programming

Pre-requisites: 3D Anatomy 101, 3D Graphics 101
Description: Fundamentals of Game Programming
Difficulty: Intermediate
Duration: 13 Lessons (approx)
Assignments: 1 game development project
Exam: 1
Software: 3D Game Builder (available below)
Available for: Any Windows PC or "netbook" (XP)
Delivery: On-line (or contact us for off-line content)




Learning Outcomes


  • Game Programming using C and C++


  • 2D and 3D Graphics Programming using OpenGL


  • Matrix functions control view and object locations


  • Arrays can be used to manage multiple objects


  • Targeting and collisions require distance calculation


  • Game pad / controller state needs to be checked every frame


  • Game speed should to be syncronised with time


  • Model matrix is used to locate and rotate objects


  • Angles are converted to x,y using cosine and sine


  • Limits must be applied to objects to keep them on screen


  • Perspective and Parallel view projections


  • Game world must have constraints and limits


  • Constants can be used to specify fixed quantities


  • Designing and developing games can be a lot of fun! 






  • 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.

    ////////////////////////////////////////////////////////