This is an advance version of Tic Tac Toe computer game written in c programming language. The game runs in graphical mode of DOS prompt and users can play the game in graphical mode. The game has many options to choose from, like playing with computer, friend. While...
Anyone and Everyone is allowed to use this code freely without any conditions. I wrote most of this code as a part of a college assignment in my Computer Graphics Lab when I was in the 6th semester of Engineering. I am a student of R.V College of Engineering,...
This C program prints out the first Fibonacci series of N numbers. In mathematics, the Fibonacci numbers are a sequence of numbers named after Leonardo of Pisa, known as Fibonacci. The first number of the sequence is 0, the second number is 1, and each subsequent...
This is a simple calculator written in C language and works under DOS Command prompt. The calculator performs all the basic arithmetic operations including addition, subtraction, trigonometric calculations, and many other functions. It can also calculate logarithms,...
This header file contains the function prototypes for a set of functions that implement some of the most common NetBIOS functions such as enumerating LANAs, adding names, removing names, etc. The functions are implemented in Nbcommon.c [code=’c’]...
This application demonstrates the various datagram operations possible from NetBIOS. This includes sending and eceiving both directed and group datagrams as well as broadcast datagrams. Compile cl -o Nbdgram.exe Nbdgram.c ..\Common\Nbcommon.obj Netapi32.lib User32.lib...
This is the graphics.h header file which contains all the graphics functions and their implementations. It is quite nice to have a look at header files just to know more about functions and their parameters. Also it tells about different structures, enums defined in...
IT IS A MULTIFUNCTIONAL PROGRAMS,WHICH HAVE A LOTS OF OPTION.IN THIS HINDI EDITOR IS STILL NOT COMPLETED.I AM WORKING ON IT.WHEN I COMPLETE I WILL MAIL IT TO YOU. C /******************************************************* * MYCPLUS Sample Code -...
I have been receiving lot of emails and requests through the forums and inline forums attached to the tutorials about how to print pyramids and diamonds in different formats. So I have written this article to demonstrate how you can print pyramids and diamonds using...
IT IS JUST A SIMPLE GAME and A FUN TYPE JOKE [code language=cpp] /******************************************************* * MYCPLUS Sample Code – https://www.mycplus.com * * * * This code is made available as a service to our * * visitors and is provided...
This program finds the shortest path between two cities, provided that the map of the two cities and the distances are provided. Shortest Path (109.7 KiB, 9,571...
It prints out the numerical codes of the printable ASCII characters. This C program prints ASCII values of all the alphabets and special characters. Quite handy function for many programmers....