Subscribe to Feeds

Send Your COMPLETED Projects To georgepj@hotmail.com

We'll Publish It With Your Name :-)

Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]

C++ Projects

1 ) COMPANY MANAGEMENT 1 - BY JOHN MATHEW


2 ) COMPANY MANAGEMENT 2 - BY JOE PAULY


3 ) SUPERMARKET BILLING - BY ARUN BABU


4 ) TELEPHONE BILLING - BY GEORGE P JOHNSON


5 ) TRAIN RESERVATION - BY SARAT M


6) CRUISE TRAVEL MANAGEMENT - BY KARUN J


7) SHOP BILLING - BY GAURAV MISHRA



8) STUDENT MANAGEMENT - BY TOM THOMAS
    ( includes SNAKE n LADDER GAME )


 9) STUDENT CCE MANAGEMENT - BY TOM THOMAS


10) QUIZ - KBC ( LANGUAGE - HINDI ) - BY SRIKANTH B


11) RANDOM NUMBER GAME - BY MANAS MISHRA


12) TIC TAC TOE GAME - BY SANKET CHIKATE  


13) CRICKET RECORD KEEPING - BY ADITYA K R


14) RAILWAY TICKET RESERVATION - KRIPA SHANKAR


15) QUIZ - GAME - BY  MITHUN MADHUKUMAR


16) DOCBOOK - BY SHAILESH GUPTA


17) DX BALL GAME - BY SUMIT SARDANA


18) VOTING SYSTEM - BY BINEESHB GOPAL

( Below are the Projects Downloaded From cbse-sample-papers.blogspot.com )


19) ADDRESS BOOK


20) DIABETES DETECTION


21) SNAKE GAME

Turbo C/C++ Downloads & Tutorials

Click Here To Download Turbo C++ For Windows 7 (DosBox)

View Download Instructions


Tutorials

1) Click Here For Tutorial on Maximising Compiler Window in Vista - By Kannan T
Many Have Problem in working Borland/Turbo C++/C in Windows Vista or 7.
The Window may not maximize in some cases. So Here is The Solution For That.

2)  C ++ Tutorial

Class XI and XII Practicals ( Index of Class XI & XII )


CLASS XII


( Download From Box above { in folder class xii practicals } for algorithms )


1) Reversing String


2) Bubble and Selection Sort


3) Linear and Binary Search


4) Binary to Octal and Octal to Binary


5) Count Records in Binary File


6) Diagonal, Row, Column - Sum


7) Matrix Multiplication


8) Merge 2 Arrays


9) Publications


10) Queue as an Array


11) Bubble Sort Salary


12) Srack as Array


13) SQL


14) Telephone Directory


15) Store text file according to upper, lower case


16) Progress Report of Student


17) Stack as a Linked List


18) Queue as a Linked List


19) Circular Queue


20) Area of Circle, Triangle and Rectangle - Function Overloading


21) Travel PLan


CLASS XI

1. No Of Digits in Number


2. Decimal to Binary & viceversa


3. Sum of Series


4. Binary to Octal & Octal to Binary


5. Reversing each word in a string


6. Sum of Series 2


7. No of Char, Vowels, Space in a string


8. Star Design + Pascals Triangle


9. Bubble Selection Sort


10. Linear & Binary Search


11. Merge 2 Arrays


12. Insert & Delete an element from array


13. Multiplication of 2 matrix


14. Row Column Sum


15. Diagonal Sum

Sum of Series

Series 1

Series 2

Series 3

Series 4

Series 5

Series 6

Series 7

Series 8

Series 9

Series 10

Series - Fibonacci

Print n Prime Nos.

Click Here To Download C++ File Of This Program

 //Downloaded From www.c4cpp.co.nr  
//(C)2009.All rights reserved.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int n=0,i,l,j,k=2,a=0;
cout<<"Enter Limit"<<endl;
cin>>l;
while(n<l)
{
j=2;
a=0;
while(j<=k/2)
{
if(k%j==0)
a=a+1;
j++;
}
if(a==0)
{
cout<<endl<<k<<endl;
}
else
l++;
n++;
k++;
}
getch();
}