Tuesday, January 17, 2012

Write c program which shutdown the window operating system ?

Write the following program in TURBO C.void main(void) { system("shutdown -s"); }Save the above .Let file name is close.c and compile and execute the above program. Now close the turbo c compiler and open the directory in window you have saved the close.c ( default directory c:\tc\bin) and double click the its exe file(close.exe).After some time your window will shutdown...
read more "Write c program which shutdown the window operating system ?"

Magic Square

Logic Assign the numbers in the order 1,2,3... in the matrix in the following pattern.Put the first number (1) as the middle element in the first row (Let it be i,j).  Put the next element in the diagonally previous (i-1,j-1) location, if the location is empty. The rows and columns are considered to be circular, i.e. if i-1 or j-1 comes to a negative value, then highest row or column is taken. If the location is not...
read more "Magic Square"

Decimal, Hex, octal and binary number inter conversion

IntroductionThe article discusses about all the number formats viz Binary, Decimal, Octal, Hex and BCD (Binary coded decimal) and conversion from Decimal to Binary, Octal and Hex and also the reverse conversion.BinaryA numbering system based on 2 in which 0 and 1 are the only available digits.Decimaldecimal fraction: a proper fraction whose denominator is a power of 10OctalA numbering system that uses eight digits, 0 through 7....
read more "Decimal, Hex, octal and binary number inter conversion"

Chess Game (Mini Project in C )

C_Projects Source Codes List | Source Code HomeProgram : Chess Game Developed in C ./*Language: C\C++Category: GamesDescription: It is chess. Two players can play it. \To simplify the code i have not intriduced the mouse.\We can play it using Keyboard.I have made this using \general rules.*/#include graphics.h#include stdlib.h#include stdio.h#include iostream.h#include conio.h#include ctype.h //For toupper#include dos.h  ...
read more "Chess Game (Mini Project in C )"

Flag counter

free counters