Friday, April 13, 2012

List of Top Ten College Mini Projects in c/c++ with full source code

If you need to make a Mini project in c/c++ language and you are confused about the project topic then don’t worry here is the list of the Top 10 Mini Projects in c/c++ you can choose any one of them. The source code of all projects is also available. All the projects are compiled in gcc compiler with code::blocks IDE so some projects may create errors in different compilers like Turbo c/c++. If you are using Turbo c then choose another compiler it is an old compiler. The best one is the gcc/g++ compiler for c and C++.
All projects are collected by my college friends and me. Some of the projects are also edited to run in gcc compiler with code::blocks IDE from other websites. For your query and suggestion send me mail at smokindinesh@gmail.com.
 Projects in C++ 
  1. Student database system
  2. Hang Man
  3. School Fee Enquiry Management System
  4. Supermarket Billing System
  5. 3D Bounce in OpenGL
  6. Bus Reservation System
  7. Puzzel Game in wxWidget
  8. Data Exchange between Notepad and Excel (Visual C++)
  9. Employee's Management System

Projects in c
  1. Quiz Game 

  2. Contacts Management   

  3. Personal Dairy Management System   

  4. Library management
  5. Snake Game
  6. Department store system
  7. Tic-tac-toe game
  8. Telecom Billing Management System
  9. Bank Management System
  10. Medical Store Management System

Please find the YouTube 

130 comments:

  1. really useful...:)

    ReplyDelete
    Replies
    1. hi i want to make a project how the steps to be taken

      Delete
  2. m getting errors can u pls solve them out

    ReplyDelete
  3. Thank u very much to all uploader...!! its really useful n no bugs fix

    ReplyDelete
    Replies
    1. Actually all above projects are compiled in gcc compiler with codeblocks IDE in windows platform so, if your compiler and platform is different then some error may occur.

      Delete
  4. great really helpful.

    ReplyDelete
  5. Please Help Me ... a Program for Add,View,Delete and Search ... Please I Really Need it ..

    ReplyDelete
  6. help for project as:
    ----------------------------------------------------------------------------------------------------------------
    MCA data management system.
    1display all records
    2.diaplay first 5 toppers for each semister
    3.add records
    4.Update records
    5.delete records
    6.exit
    ------------------------------------------------------------------------------------------
    using MS Access database.

    pls help

    ReplyDelete
  7. This comment has been removed by the author.

    ReplyDelete
  8. Laboratory Management System in C++

    send me the link or codding for this project
    parghisk@gmail.com

    ReplyDelete
  9. Laboratory Management System in C++

    send me the link or codding for this project
    tobbyomotola2011@gmail.com

    ReplyDelete
  10. please send source code for Data Exchange between Notepad and Excel (Visual C++) @ palkianjali@gmail.com

    ReplyDelete
  11. lot of errors, can u fix it... plsss it'l b helpful

    ReplyDelete
    Replies
    1. All project are compiled in MinGW with codeblock IDE in windows machine.

      Delete
  12. This comment has been removed by a blog administrator.

    ReplyDelete
  13. plz send full source code of super market billing system on kaushlendra.rock@gmail.com

    ReplyDelete
  14. can someone send me a c program for sound generator using avr 8535 micrcontroller using a 4X3 keybad.

    ReplyDelete
  15. plz send full source code of web server in java language on munnilal680@gmail.com

    ReplyDelete
  16. plz send me source code of teacher's time table in c on dipika.chaudhari27@ gmail.com

    ReplyDelete
  17. rely very interesting

    ReplyDelete
  18. i cant imagine people are downloading projects from here....it will not help in your programming....skillx.......watch videos if wanted to get help..... in these already developed programs...u will not get things clearly....... even i cant....

    ReplyDelete
    Replies
    1. If u don't that does mean some of us don't
      Some of us download and modify it.but sometime to read through the codes to understand it better when we see others!!

      Delete
  19. i want project in bakery billing system using c lang

    ReplyDelete
  20. i need food automation in c++ send me at pillaiakhil99@rediffmail.com

    ReplyDelete
  21. plz send me the latest and different C++ project titles

    ReplyDelete
    Replies
    1. #include
      #include
      #include
      #include
      #include
      #include
      #include
      #include
      #define max 20

      using namespace std;
      ofstream myfile;
      struct student
      {
      char fname[80];
      char lname[20];
      long int room;
      char id;
      int age;
      };
      int num;
      student emp[max],tempemp[max];
      int main()
      {
      system("cls");
      void build();
      void list();

      void deletes();

      void search();

      char option;
      void menu();
      menu();
      while((option=cin.get())!='q')
      {
      switch(option)
      {
      case 'b':
      build();
      break;
      case 'l':
      list();
      break;

      case 'd':
      deletes();
      break;

      case 's':
      search();
      break;

      }
      menu();
      }
      return 0;
      }
      void menu()
      {
      system("color Ff");
      system("cls");

      cout<<" ";
      cout<<"\n***** HOSTAL Management System ***** ";



      cout<Built The studen Record ";
      cout<<" ";
      cout<<"\n\t\t Press l---->List The Student Record ";

      cout<<" ";
      cout<<"\n\t\t Press d---->Delete An Record ";

      cout<<" ";
      cout<<"\n\t\t Press s---->Search A record ";

      cout<<" ";
      cout<<"\n\t\t Press q---------->Quit Program ";
      cout<<" ";
      cout<<"\n\n \t\t Select Your Option Please ====> ";
      }

      void build()
      {
      system("color Df");
      system("cls");

      cout<<"\t\t\t Build The Record";
      cout< 20"<";
      cin>>num;
      cout<<"\n Enter The Following Items"<>emp[i].fname;
      myfile<>emp[i].lname;
      myfile<>emp[i].room;
      myfile<>emp[i].age;
      myfile<>emp[i].id;
      myfile<>room;
      int i;
      for(i=0;i<=num-1;i++)
      {
      if(emp[i].room==room)
      {
      tempemp[i]=emp[i];
      }
      }

      num--;

      for(i=0;i<=num-1;i++)
      {
      emp[i]=tempemp[i];
      }


      }
      void search()
      {
      system("color Cf");
      system("cls");

      cout<<"Welcome To Search Of student Database ";

      cout<>room;
      for(int i=0;i<=num-1;i++)
      {
      if(emp[i].room==room)
      {

      cout<<" fast name last name Room student Age "<<endl;
      cout<<" ------------------------------------------------------ "<<endl;
      cout<<setw(6)<<emp[i].fname;
      cout<<setw(6)<<emp[i].lname;
      cout<<setw(12)<<emp[i].room;
      cout<<setw(8)<<emp[i].id;
      cout<<setw(8)<<emp[i].age;
      cout<<endl;
      }
      else
      cout<<"this room is empty"<<endl;

      }

      cout<<"going to main menu";
      getch();




      }

      Delete
  22. plz send full source code for card game with 7 piles and 28 cards... hs.swarna.hari@gmail.com

    ReplyDelete
  23. plz send me c++ souce code for personal information management

    ReplyDelete
  24. can i request a turbo c program of list function .. with menu of insert delete edit and display .. thanks

    ReplyDelete
  25. hi everybody, I' am beginner in c programming, and I try to built a program for producing a tool to perform basic tasks in a business management application.

    ReplyDelete
  26. i want to do a pendrive lock.could you please give me a idea.

    ReplyDelete
  27. I want opengl mini project src code for rocket launching...please replay with link where i get that...

    ReplyDelete
  28. Do someone have the firefighting robot project c programming source code, it uses wall follower algorithm. Can you please send it to my email: andywongch.89@gmail.com
    I appreciate with your kindness

    ReplyDelete
  29. Thank you for posting this, considering that there only seems to be projects using old header on the internet.

    ReplyDelete
  30. please someone mail me or tell me how should i make casualty increasing inquiry management system please its important for me
    my email is daniyal_durrani12@hotmail.com

    ReplyDelete
  31. #include
    void X(int &A, int &B)
    {
    A = A + B;
    B = A - B;
    A=A-B;
    }
    void main()
    {
    int a = 4, b =18;
    X(a,b);
    cout<<a<<","<<b;
    }

    ReplyDelete
    Replies
    1. a=18,b=4
      its a simple progrmm to swap to vareables
      using functions

      Delete
    2. error in cout statement but envy if this program will be run or excute then this will give the answer a=4,b=18 because of function return type is void.

      Delete
    3. error in cout statement but envy if this program will be run or excute then this will give the answer a=4,b=18 because of function return type is void.

      Delete
  32. In MBA there are many specializations offered in different colleges. Human Resource Management is the one of the best specialization and having lot of scope and lot of job opportunities in this field.
    Top institutes offering distance MBA in human resource management Thanks for sharing.

    ReplyDelete
  33. plz some one help me in developing code of my project ,,, my project is cultural and technical management !!!!

    ReplyDelete
  34. i need a code in c++

    ReplyDelete
  35. I need a code in 'C' for the project of Token Management System. for displaying the customer name, mobile, his token no. and also this record is save into the file... This project is based on Postpaid, prepaid, recharge of customer where the system gives the token to the customer

    ReplyDelete
  36. i need a code in 'c' for the student and admin both.
    where choice is asked , about your identity whether u r a student or admin. If u r admin then type your name and password and if password is correct then u can update,search,delete,modify,enter details of students.
    But if you are a student then type your roll no only and you get your full details which are entered by admin.

    ReplyDelete
  37. can anyone send me full project on examination invigilation scheduling??

    ReplyDelete
  38. chek dis for more projects and slide
    www.btechsolutions4u.blogspot.com

    ReplyDelete
  39. please give me a college based projects

    ReplyDelete
  40. pls give a source code for online quiz

    ReplyDelete
  41. pls send me any good mini project of computer graphics....to ths mail:

    parip570@gmail.com

    ReplyDelete
  42. More and quality projects here:--> http://www.easycppcodes.com/projects-in-cpp/

    ReplyDelete
  43. Here is link to my C language project in Bank Management system-->https://www.fiverr.com/s/7st9bd
    I can help you in C/C++ programs here for $5 www.fiverr.com/uzma11

    ReplyDelete
  44. please any one send source code for market bill management in c programming to my email id : snmurthy1403@gmail.com

    ReplyDelete
  45. i want simple college management system program in c++.
    plz give for my project.

    ReplyDelete
  46. if u have coding for car rental service in c program means plz to this mail id
    kanagarajan.me14@bitsathy.ac.in

    ReplyDelete
  47. i need help in car parking management system in c++.. can someone help me in it?? any tips.. im totally confused :(

    ReplyDelete
    Replies
    1. i have its code

      Delete
    2. plz send me the code to this mail .........pragna987@gmail.com.........plz its very urgent

      Delete
    3. pls forward to me also...plllsss
      anjanavitthal@gmail.com

      Delete
  48. my project is student prerequisite management system using linked list or trees....it should show whether the student is able to take the subject or not...help me...!!!!

    ReplyDelete
    Replies
    1. please send the project..........in
      ssureshmsd7@gmail.com

      Delete
    2. please send me the code
      divyadeepudd7@gmail.com

      Delete
  49. mei kya project krn ?koi muje b to btae naaaaa plzzz

    ReplyDelete
    Replies
    1. I have a project ATM coding. You Cant take it from me

      Delete
  50. i want a full coding of mobile store manamgment system in c langunage.
    can anybody send me please on mehwish.reyaz@gmail.com

    ReplyDelete
  51. Replies
    1. knsy project ka code chahy?

      Delete
  52. I wants to upload code of ATM how can i upload it to your site?

    ReplyDelete
    Replies
    1. First send me by email: smokindinesh@gmail.com. I will review it then only I upload it.

      Delete
  53. I want project on employee management in visual c++ using win

    ReplyDelete
  54. Can you answer me to choose the best project for my tutorial?

    ReplyDelete
  55. i also want to share mine.. tennis scorekeeper. do visit here http://adf.ly/1M3wBt for the source code. thanks. :)

    ReplyDelete
  56. can any one help me by sending the source code or helpful link for the below project...



    Client data information processing of bank for various clients using the following menu choices:
    1 – Capture data from file
    2 - to add an item to the queue
    3 - to remove an item from the queue
    4 – write data from file
    5 - to end
    //Data prototype struct clientData
    {
    char Client_Name[10];
    int Balance_due;
    char Month_Due[4];
    //some more required here???
    };
    //function prototypes may be required pointers
    int Menu(int choice);
    void Add(struct clientData client);
    void Remove(struct clientData client);
    void Print(struct clientData client);
    void Capture_Data(struct clientData client);

    ReplyDelete
  57. binomial series is finite project plzzz help me

    ReplyDelete
  58. anyone send the code of laptop scheme ...plzzz...

    ReplyDelete
  59. anyone send the code of laptop scheme ...plzzz...

    ReplyDelete
  60. real estate management system project in c++ plzz help me

    ReplyDelete
  61. whats the password for library management system project in c???

    ReplyDelete
  62. hi can someone sent me the code for memory block
    in c promgrmming please

    ReplyDelete
  63. i want project on medicine record maintenance system ...please send me in my email ... jatinderk623623@gmsil.com

    ReplyDelete
  64. Can someone send a source code for a c++ car race game? I'm new at programming. It has to be functions for 3 cars racing 3 laps. Car color and lap time. Thank you!

    ReplyDelete
  65. hai guys i want project "mobile shop" using c language plz help me...................................

    ReplyDelete
  66. hai guys i want project "mobile shop" using c language plz help me...................................

    ReplyDelete
  67. c any good project source code pls hlp has gkgokul025@gmail.com

    ReplyDelete
  68. koi run hna wala programme da dain plz

    ReplyDelete
  69. help me with source code for clothing management store system

    ReplyDelete
  70. this blog is awesome...helped me lot

    ReplyDelete
  71. can anyone help me in data base managment mini project help sql,c.
    And for graphics and multimedia mini project in c only please help me

    ReplyDelete
  72. data base mini project in sql,c language
    Graphics an multimedia mini project in c language
    mailid-shahjj14.it@coep.ac.in

    ReplyDelete
  73. data base mini project in sql,c language
    Graphics an multimedia mini project in c language
    mailid-shahjj14.it@coep.ac.in

    ReplyDelete
  74. send me railway reservatiom system project code

    ReplyDelete
  75. any project ideas related to biotechnology/biology available in C language?

    ReplyDelete
  76. I want about Phonebook application in c language

    ReplyDelete
  77. i want a full coding of a medical center system using windows application in++ c langunage.
    can anybody send for me please on rusarikabill@gmail.com thank you

    ReplyDelete
  78. Bakery billing system c code please asap I need.s end me to munnavanam@gmail.com thankyou

    ReplyDelete
  79. I Driving license management system ...please send at ayyannajeebb3@gmail.com

    ReplyDelete
  80. I need something new management system for my project

    ReplyDelete
  81. can someone send me library management system project in c++... please ...
    mishrareena39@gmail.com

    ReplyDelete
  82. pleas send me quikly snake game in c languag befor 7 pm

    ReplyDelete
  83. can Any one give me Snake Game in C++

    ReplyDelete
  84. can anyone send me the program for constructing building using c++?
    its includes the calcution like legth,breath,..?

    ReplyDelete
  85. I have one my first c project on youtube "Cricket game in c programming"

    ReplyDelete
  86. The help of internet contemplating is that you are able to yield at your own revive. On the off chance that you wish to qualify completed then you can, and in the event that you are battling you can adagio guzzle. java programming

    ReplyDelete
  87. plz send any one application and easily understandable program in c

    ReplyDelete
  88. can i have some more projects using c language please....

    ReplyDelete
  89. hie ,i want c program for bus management

    ReplyDelete