C++

C++ is the only language I had studied proffesionally and is my base for studing other languages. I owe a great debt to C++.

Program Sources
Header Files
C++ Projects for 12th Std

Comments

Sriram at 14 Jan, 2007 10:03
HOW CAN I USE A MOUSE USING CONIO.H ONLY ( I'M NOT ALLOWED TO USE GRAPHICS.H)PLEASE REPLY
Reply to this.
Anonymous at 31 Mar, 2008 07:08
#include<stdio.h>
#include<conio.h>
union REGS i,o;
void main()
{
i.x.ax=0; //Initializes mouse
i.x.ax=1; //Displayes mouse
}
best of luck

feel free to call me on 09853800799
or mail me on mukesh_coolguy89@rediffmail.com
Reply to this.
aditya at 28 Jan, 2007 10:43
i am having a project coded in c++ of periodic table but i want introduction of that project and its user manual within a hour ..plz help me
Reply to this.
Anonymous at 11 Feb, 2007 06:34
please help me in making c++ projrect on company management
Reply to this.
jhonson at 13 Feb, 2007 12:12
hi sir

i m doing jog as a technical incharge for SATELLITE RECIVER (STB) the korea compony
giive us software for scramble channels change to discramble after download flash software so i wont open BIN FILE and edit my self and make scrabmled channel to discramble so please send me email what can i do for open it please please
Reply to this.
Anonymous at 27 Feb, 2007 07:11

template <typename Comparable>
bool BinarySearchNode<Comparable>::remove( const Comparable & obj,
        BinarySearchNode<Comparable> * & ptr_to_this ) {
    if ( obj == element ) {
        if ( leaf() ) {                              // leaf node
            ptr_to_this = 0;
            delete this;
        } else if ( left() != 0 && right() != 0 ) {  // full node
            element = right() -> find_min();
            right() -> remove( element, right_tree );
        } else {                                     // only one child
            if ( left() != 0 ) {
                ptr_to_this = left();
            } else {
                ptr_to_this = right();
            }
            delete this;
        }

        return true;
    } else if ( obj < element ) {
       if ( left() == 0 ) {
           return false;
       } else {
           return left() -> remove( obj, left_tree );
       }
    } else {
       if ( right() == 0 ) {
           return false;
       } else {
           return right() -> remove( obj, right_tree );
       }
    }
}
Reply to this.
Anonymous at 30 Sep, 2007 07:12
y b like that
Reply to this.
eCho at 29 Apr, 2007 03:59
hey...m a 12th garder..(cbse)..mm ive made games lke hangman n tik tac..
n im familiar wid classes/sttruct/files...
i js need help in a particuar concept
************ ACTIVE SEARCH *********
active search...hw do i program diz...
fr example...derz a list of 100 names
n i need 2 search fr a name lke "HARI"
so wen i type "H"..IMMIDIATLY all da names strtin with "H" shud appear...n wen i type "HA" al names strtin wid HA shud appear instantly..!..
...get wa i mean?..i js need a hint...plzplzpzlpzlpzlzpzl help!...
thnku loads...
eCho
Reply to this.
Ginta at 06 Dec, 2007 06:22
In that case, I think implementing a "trie" could do the work. A trie is some kind of special tree that stores initial keywords for something, and a value of true or false if they are the complete word or a simple prefix. For example:
(EMPTY)
false
A B C D ... Z
| | | | ... |
AC .................................. O
false FALSE
... I ... ... M ...
ACID ZOMBIE
true true

I hope you understand this little example. See more at: en.wikipedia.org/wiki/Trie
true
Reply to this.
Anonymous at 26 Feb, 2008 11:12
i want to run any thing through the LPT Port so please i have not perfect code of LPT Port. please tel me code and how can use it in C programing.
Reply to this.
Adi at 16 Jul, 2007 10:08
I have a 2.10 version of the turboc compiler. I have all the header files i need but the iostream.h. Can anybody tell me where to get it from?
Reply to this.
MAdhan at 03 Aug, 2007 11:35

sir please give a C++ Code for making micky mouse animating
Reply to this.
Anonymous at 14 Aug, 2007 02:44
please tell me how do take back the pointer at the beginning of the file......
i read a file once.... now i wanrt to read it again from starting so it is not workking.
please help
Reply to this.
Anonymous at 21 Aug, 2007 02:41
please tell me how do take back the pointer at the beginning of the file...... i read a file once.... now i wanrt to read it again from starting so it is not workking. please help
use seekg to move get pointer to read the contents of file again from starting position eg:-

#include <iostream.h>

using namespace std;
int main()
{
fstream fin;
char ch;
fin.open("abc.dat",ios::in||ios::binary);
if(!fin)
{
    cout<<"Error in opening the filen";
    exit(1);
}
while(!fin.eof())
{
   ch = fin.get();
   cout<<ch;
}
//again if you want to read the file from start
fin.seekg(ios:beg);
while(!fin.eof())
{
   ch = fin.get();
   cout<<ch;
}

//close the file stream
fin.close();
return 0;
}//end of main function
Reply to this.
Ginta at 06 Dec, 2007 06:23
Correction: replace ios:beg by ios::beg

:)
Reply to this.
Anonymous at 28 Aug, 2007 09:28
please help me with the source code of a simple banking project....including adding new account,cash deposit,cash withdrawl,balance checking etc...The account number need to be generated automatically....please help me...
Reply to this.
Anonymous at 31 Aug, 2007 08:17
I need grphics.h header file..
Where will I get that???
Reply to this.
monaagarwal at 31 Aug, 2007 11:03
i am the student of class 12th. i completed my project calculator,bt i need introduction and conclusion n plz tell me how i submit this project to examiner.i.e which pages i add before this project in which the examiner get happy and give me good marks.
thanks
Reply to this.
Anonymous at 07 Sep, 2007 07:55
hi
your c++ projects r undoubtly great......
but will dey work for cbse?
Reply to this.
Binny V A at 07 Sep, 2007 10:33
Yeah - I was a CBSE student myself.
Reply to this.
Vivek at 14 Sep, 2007 08:23
Hi,
Iam an engineering nstudent.I need a good C++ project
Reply to this.
divya at 20 Sep, 2007 04:24
What is Bln-Co? Can we use c++ to create GUI based application?
Reply to this.
Binny V A at 20 Sep, 2007 07:40
Bin-Co is simply a name for my site. C++ can be used to create GUI applications - but I suggest you use Tcl/Tk instead. Its much easier.
Reply to this.
Nick K at 16 Oct, 2007 08:24
*******HELP********
Hey guyz.... i have a very big task. I have made a program in which i made a STICKMAN which can move left and right easily but.... when i try for diagonal jump i.e. when i press the up & left key both together, the compiler doesnt recognize them together. It either first accepts the up key or the left key...
Can u pls tell me how can i make the figure jump diagonally(projectile)??

pls help!!
pls mail the proggram 2 me at nilay1990@yahoo.com
Reply to this.
Anonymous at 26 Oct, 2007 08:51
hi
need a program on banking softwares with graphics ,files and classes and object plzzzzzzzzz urget send the codes matter of life and death
Reply to this.
Anonymous at 16 Nov, 2007 04:52
I want a project on examination management
Reply to this.
Anonymous at 16 Nov, 2007 04:55
I want a project on examination management
Reply to this.
Anonymous at 12 Dec, 2007 01:55
hi i'm in grade 12th.....n i want a project on multiple choice questions in c++ can any1 help me??
Reply to this.
Anonymous at 26 Jan, 2008 11:21
do one thing
buy or adjust from some one the "together with solutions"
they give a cd along with it and it has two projects :
1.music management
2.multiple choice questions program

edit the code so it may look genuine.
and u are ready.
Reply to this.
Anonymous at 08 Jan, 2008 10:43
explain me the output of this code:
#define sqr(N) N*N
void main()
{int num=3;
cout<<sqr(num-1)<<endl;
cout<<sqr(num+1);
}
Reply to this.
sumyuktha at 12 Jan, 2008 03:36
I need a project on "LIBRARY MANAGEMENT SYSTEM" plz help by providing source codes.
Thank u.

Reply to this.
Anonymous at 23 Jan, 2008 03:31
plz!!!help me in making the project on LIBRARY MANAGEMENT SYSTEM based on linked list
abhiwarior@yahoo.co.in
Reply to this.
Anonymous at 27 Jan, 2008 01:34
i want a help on project of c++ of class XI
on topic hotel management
Reply to this.
Anonymous at 07 Feb, 2008 08:51
what is use of this pointer?
Reply to this.
Anonymous at 15 Feb, 2008 04:37
I really need help on this one.please help me with source codes of a HOSPITAL REGISTRY SYSTEM as soon as possible-if possible.Thank you!
Reply to this.
Anonymous at 16 Feb, 2008 02:51
plz help by providing code for the following
-Write a function in C++ called shift( ) to rearrange the matrix as shown . Do not
use parallel matrix .
Original Matrix Rearranged Matrix
1 2 -3 -2 -3 -2 1 2
0 -1 2 1 -1 0 2 1
-3 9 -4 4 -3 -4 9 4
Reply to this.
Anonymous at 25 Feb, 2008 02:44
Plz send me a simple project in C++ plzzzzzzzzzz
Reply to this.
Anonymous at 26 Feb, 2008 11:25
Hero, The Game Project [Comment Edited - code moved to new location]
Reply to this.
Anonymous at 11 Mar, 2008 05:45
Hey u should accept the name to be searched say in a array of characters with the name 'usersearch'. Then define an integer variable len that stores strlen(usersearch). Then open the file that contains the 100 names in which u r supposed 2 search and retrieve the names 1 by 1. Let the name retrieved from the file be chkname. Check this condition for all the 100 names in the file:
if (strncmp(usersearch, chkname, len)==0)
{
puts(chkname);
}

I kno it'll kinda take time 2 check 4 all 100 names but i guess thats the simplest logic u can give which will be under ur 12th std cbse syllabus!!

Hope u got me!
Reply to this.
ary at 13 Mar, 2008 07:29
please help me, open my file *.bin. but i'm for editing.
Reply to this.
Anonymous at 17 Mar, 2008 02:00
i need a help on c++ project
the subject of project is--customar which is come into honda showroom and buy a honda product . this all work is done online
plz help me on this topic
Reply to this.
Anonymous at 20 Mar, 2008 03:08
m in XII cbse board n hav comp. sci. ma examz r on 31st mar.......pls help me out........
Reply to this.
Anonymous at 27 Mar, 2008 07:03
I want c or c++ source code for railway management system.Kindly inform this email id.
Reply to this.
Anonymous at 29 Mar, 2008 02:36
DEAR IN NEED CODE FOR SIMPLE BANKING SYSTEM C++ Source code if some one have it please post
thanks
Reply to this.
Anonymous at 08 Apr, 2008 07:39
Can anyone help me to write a fraction calculator prgm in C++ using stack 4 registers namely x y z and r..i have used structure and switch case bt confused
Reply to this.
Viikram at 18 Apr, 2008 08:40
Plzz...some one gimme a source code/link on how to prepare an Examination & Hiring system...accept applications,print them,print ID card with SOME details from application form,print them,conduct exms,compilation of result..
Reply to this.
Comment


Comment




Comment Formating : HTML tags a, strong, em, b, i, code, pre, p and br allowed. Other tags will be shown as code(< will become &lt;). Urls, Line breaks will be auto-formated.
Subscribe to Feed