C/C++

C/C++ Source Code

Free C/C++ Source Code. Download 10 latest C/C++ system's projects with source code for free here.

Find Compilation Time of Any Code and Execution Time of Any Command

Submitted by Arup Kr Goswami on
This is a C source code, can find Compilation Time of any source code & also Execution time of any Command, in nanosecond, microsecond, millisecond. This is written in gcc platform ( Linux, Ubuntu ). The execution time of all commands of Ubuntu can be measured & in case of compilation time of source codes, the corresponding compiler must be installed in the machine. Thanks.

Adjacency Matrix Creation Along with Degree of Vertices from a Text File

Submitted by Arup Kr Goswami on
This is a simple C source code, written in gcc platform (Ubuntu, Linux). It reads data from given input .txt file & generate .dat file as output, which contains the Adjacency matrix along with degree of vertices from the given .txt file. It is for only Unweighted Graph. Note: Must change the path of the files in code. Hence, Pattern is that the first digit is the number of nodes in the graph. Next

Simple Zodiac Sign Using If - Else Statement

Submitted by Jariza Danza Apal on
This is a simple zodiac sign project where the system will tell you of your zodiac sign by inputting of your birth date. This is very easy to do project. Try this yourself and learn some new codes. Hope you learn from this. This is the full source code of the system. #include using namespace std; int main() { int a = 0; int date,month; start: cout > month; cout > date; if (month == 3 && date >= 21

Conversion Meter using C

Submitted by Soma Jana on
Hello, This is a simple C Source code, which includes a converter. Here Length, Temperature, Weight & Currency conversion is possible (in different units). It is written in gcc platform (Ubuntu, Linux). This is very simple to understand. This is basically for the beginners, hope it will help them. Thanks.

Advanced Banking System in C++

Submitted by Joshua1 on
Hello codesters i’m Joshua once again. It’s been a long tym been busy with my dessertation. So today I want to show u guys how to write a real simulation of a real working Banking System in C++ which I named OutLawz Bank Inc. because am a big 2Pac fanatic. Back to the point now unlike other Bank systems, I wrote this system with an Admin side and the Banker side separately. This system will teach

Hasib Player

Submitted by Hasibul Hasan … on
Hi everyone, Here is my very simple qt media player. >> open media file from open button or file>open >> press play button >> enjoy your audio/video Try this yourself and learn a new codes. This is fun to do project. Enjoy coding. Thanks

Generation of Binary Code using C

Submitted by Arup Kr Goswami on
Hello, This is a simple C source code, written in g++ platform (Ubuntu, Linux). This is a process to generate Equivalent Binary numbers of decimal values. Here, you have to Push values in stack at first, (Sequentially in decreasing order, e.g 4, 3, 2, 1), then it will generate a palindrome sequence (Length will be [2^n]-1 for given n numbers). Then you will show Binary numbers of maximum n bit