First Turbo Graphics Program in C Language

First Graphic Program [crayon-628632402e0c7581411242/] Requirement to Run This Program Graphics.h Header File Graphics.lib library file Graphics driver (BGI file) 640x480 VGA monitor Header File : graphics.h All Graphical Functions are Included in Graphics.h After Including graphics.h Header File [ You can get access graphical functions ] You must Know Following Things before Learning Turbo Graphics InitGraph : Initializes the graphics system. In C Program execution starts with main() similarly Graphics Environment Starts with this function. initgraph() initializes the graphics system by loading a graphics driver from disk (or validating a registered driver) then [...]

Printing Text in Graphics Using Outtextxy Function

Program : [crayon-628632402e426096703997/] Explanation : [crayon-628632402e42c973364072/] This Function is Similar to Printf Statement. Printf Prints Text on Screen in "Text Mode" while outtextxy() function Prints Text onto Screen in "Graphics Mode". This Function Accepts 3 Parameters. Syntax : [crayon-628632402e430814935804/] Parameter Explanation X_Co-ordinate Specifies X Co-ordinate Y_Co-ordinate Specifies Y Co-ordinate Text String/Text to be Printed On the Specified Co-ordinates

C Program to check if mouse support is available or not.

Program : [crayon-628632402f1e7896045328/] Output : [crayon-628632402f1ee562997853/] Explanation : Int86() is a C function that allows to call interrupts in the C program Header File : dos.h [crayon-628632402f1f2445578076/] In and out register must be type of REGS. REGS is a built in UNION declaration in C. It is defined in the header file <dos.h>