Saturday, 1 February 2014

Mini project Employee record system using C

The employee record system is very simple and for very beginner mini project. It is based one the menu-driven program for elementary database management. It employ all the basic technique of file handling in C. It consists of following features Writing the data in binary file Reading the data from binary file Modify the record Delete the record This project is a learning milestone for beginner who want to step into the database management project in C. Source Code /** *  A menu-driven program for elementary database management *  @author: Bibek Subedi *  @language: C *  This program uses file handling in Binary mode */ /// List of library functions #include <stdio.h> ///for input output functions...

Mini project “Calendar Application” Using C/C++ – Free download.

Mini project “Calendar Application” is also a simple project made using C. It uses many windows properties to make it colorful, for example, to indicate the vacation, it uses the red foreground color.The calendar can be used for two purposes. First to  see the date and month as usual calendars and second to find out the day corresponding to given date. Some of the silent features of the project are It uses various windows properties to make the program colorful although it has lack of graphics It entirely uses C codes, code is written in simple manner with lots of comments Important notes can be added. The date with such notes appears different than others with red background color. The months can be navigated using arrows...

Friday, 31 January 2014

Minor project: Cyber Management System using C

C.yber is a program which interconnects different computers which allows users to communicate over the computer network and provide security from unauthorized users by login system in client server.The project aims at managing the cyber cafe with multiple clients and give the clients access of services that the cyber is providing when it log in. The clients can log in as members or guests and use the services that the cyber is providing. The client can request services of cafe like tea, coffee or any others. The above program uses file handling as database. The various features of C like Multithreading, Socket (Networking) are used. It is very useful for the student or beginner in the programming field. It also helps in building...

Mini Project Student Record System in C

Mini project student record system is another project based on programming language C. It also uses files as database. This project is similar to another mini projects of this blog but every project in Programming Techniques has unique style of coding and presentation so that reader get clear about all aspects of programming. In this project, a console window is virtually splited into two parts, one is static which doesn’t change and another is dynamic which changes time to time. The text are written using various colors to make them static. The program is not complete, reader can download the code and make improvement and also make it complete. There are many places for further enhancement. I think this project becomes milestone...

C Mini Project Ideas with a Sample Calculator Project

Do you want to build a simple application in C but you don’t know how and where to start? Or you know how to build a C application but don’t know any project ideas? then do not worry you are at the right place. If you finished learning  C and became familiar with its programming paradigm then I encourage you to build some applications (weather it is application software or system software) to actually sharpen your skills in C. If you do projects, then you will know how to apply those programming constructs accurately in building a projects. So here I will explain how to start a new C projects for completely beginner and give some projects ideas about what type of application you can build using C language I have some suggestions for people who are about to write their first...

Thursday, 30 January 2014

Drawing a Circle with Mid – Point Circle Algorithm in C/C++

As in the previous line drawing algorithm, we sample at unit intervals and determine the closest pixel position to the specified circle path at each step. For a given radius r and screen center position (xc, yc), we can first set up our algorithm to calculate pixel positions around a circle path centered at the coordinate origin (0, 0). Then each calculated  position (x, y) is moved to its proper screen position by adding xc to x and yc to y. Along the circle section from x = 0 to x = y in the first quadrant, the slope of the curve varies from 0 to –1.  Therefore, we can take unit steps in the positive x direction over this octant and use a decision parameter to determine which of the two possible y positions is closer...

Implementing Bresenham’s Line Drawing Algorithm in C/C++

Bresenham’s Line Drawing Algorithm is an accurate and efficient raster line-generating algorithm developed by Bresenham. In this algorithm, we first consider the scan – conversion process for lines with positive slope less than 1. Pixel positions along a line path are then determined by sampling at unit x intervals. Starting from the left end point (x0, y0) of a given line, we step to each successive column (x position) and plot the pixel whose scan – line y values is closet to the line path. Assuming we have determined that the pixel at (x(k), y(k)) is to be displayed, we next need to decide which pixel to plot in column x(k+1). Our choices are the pixels at positions (x(k) + 1, y(k)) and (x(k) + 1, y(k) + 1). The following section...

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Affiliate Network Reviews