Tuesday 7 May 2013

Monday 29 April 2013

How To draw OGEE Curve

Download PDF file....

An ogee is a curve (often used in molding), shaped somewhat like an S, consisting of two arcs that curve in opposite senses, so that the ends are tangential.
The term has uses in architecture, mathematics, and fluid mechanics, as well as marine construction, clock design and plastic surgery.......read more about OGEE curve






Wednesday 17 April 2013

OOP assingment.....exe

Sollution of OOP Assignment.....!!!!!!!!

but guys i am seriously telling you do not cheat coz if you cheat it means you are not learning any thing.......
Assignment # 1
Assignment # 2
Assignment # 3
Assignment # 4
today is 24 of April 2013 i am uploading all the source codes of OOP assignment......
SEE CODES HERE

Wednesday 10 April 2013

Hy I am here for another easy and efficient Program that is ....

AGE CALCULATOR...
(download here..........)
And AFTER 17'April 2013 source code will also available........

Tuesday 19 February 2013

Maths Game(using arithmatic operations)

Lets Enjoy this interested Maths Game...........!!!




And here is the source code of this interested Math game

#include<stdio.h>
#include<dos.h>
#include<stdlib.h>
#include<conio.h>
#include <stdlib.h>
void head (void);
main()
{    
    char y='y';
    int n,scr=0,r;
    int a,b,c,ans,in;

    for(n=0;;)
    {
        head();  
A:    randomize();
    a=random(21);
    b=random(21);
    c=random(1000);
    gotoxy(15,15);
    printf("Score=%d",scr);
    if(a==0 || b==0)
    {
        goto A;
    }
    if(c<250)
    {
        gotoxy(36,10);
        printf("%02d+%02d=",a,b);
        ans=a+b;
    }
    else if (c>250 && c<500)
    {
        gotoxy(36,10);
        printf("%02d-%02d=",a,b);
        ans=a-b;
    }