C/C++

Complement Graph generation of Simple Symmetric Random graph using C

Submitted by Arup Kr Goswami on
This code generates a Simple symmetric random graph initially & then it also generates the complement graph of that graph. This is written in Dev-C++ platform. Let a simple symmetric random graph is denoted by G, then we say the complement graph will be denoted by G'. Consider G has three vertices (1, 2, 3) & egdes (a, b). a exists between 1 & 2, b exists between 2 & 3. No edge exists between 1 &

Sub-Graph generation of a Random graph

Submitted by Arup Kr Goswami on
This is a simple source code written in C, Dev-C++ software, platform- Windows 7. It generates a Random Simple symmetric graph at first & then generates an arbitrary subgraph from that particular graph. The sub-graph may contain only one vertex of the graph as well as may contain a vertex set & edge set of that graph. Thanks.

Departmental store management system

Submitted by bhawesh kafle on
This is a simple project on departmental store management system developed in c++ programming language . This project helps to keep all the information details of the items available in departmental store and maintains the stock and prints the bill. Use C++ programming editor and run the program using c++.

C Source Code to Reverse the Operation of Shift & Caps Lock

Submitted by Arup Kr Goswami on
Hello. This is a simple C source code written in Turbo C platform (OS- Windows 7) which actually reverses the operation of Shift & Caps Lock. That is, if Caps Lock is ON, then all pressed key will be in Lower Case, or keeping Shift pressed, all pressed keys are in Lower case, else all are in Upper case. So, it is the reverse of normal condition.

Ohm's Law Calculator using Simple Graphics in C

Submitted by Arup Kr Goswami on
Hello. This is a simple C source code written in Turbo C (OS- Windows 7). It can calculate the values using Ohm's Law. I also used basic of Computer Graphics in this project. Basically, it is a calculator where you have to put values with proper unit (e.g resistance in ohm, voltage in volts etc), hence it finds the result. Thanks.

A simple Timer using C

Submitted by Arup Kr Goswami on
Hello, This C source code is written in gcc platform (Ubuntu, Linux). It is a simple timer, actually it counts the difference between the Set time (Set by user) & current time. Let the current time is hh-mm-ss of today, so it will run for maximum hh-mm-ss of tomorrow, i.e for 24 hours maximum. Thanks