Page not found
Search results
Settextstyle function in c
... EUROPEAN_FONT , BOLD_FONT } ; C programming source code for settextstyle #include <graphics.h> ... 0 ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; for ( font = 0 ; ...
devyog - 08/01/2018 - 20:55
closegraph function in c
... called initgraph. Declaration: void closegraph(); C code of closegraph #include<graphics.h> #include<conio.h> ... initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; outtext ( "Press any key to ...
devyog - 08/01/2018 - 20:55
ellipse and fillellipse functions
... and fill it with current drawing color and pattern. C programming code for ellipse #include<graphics.h> main ( ) ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; ellipse ( 100 , 100 , ...
devyog - 11/01/2018 - 23:19
C mouse programs
Mouse programs using C: Do everything with mouse using these C programs. On this page you will find sample mouse programs using C language. Programs ranging from how to use mouse in text and graphics mode. ...
devyog - 09/06/2018 - 20:50
C faq
... This page contains faq (Frequently asked questions) about C language. Q1) What is C? Ans: C is a programming language. Q2) What is main function? Ans: ...
devyog - 31/10/2019 - 19:34
getdate C
Program to print current system date, getdate C code below explain how to use this function to print computer date. Getdate example C programming code to print date #include<stdio.h> ... 0 ; } This code will work only in Turbo C compiler. C programming: dos.h ...
devyog - 10/12/2017 - 06:21
for loop in C
for is a keyword of C programming language. It is frequently used in C programs. We will discuss how to use for loop and it's variations with ...
devyog - 09/06/2018 - 20:56
C program to check if an array is sorted or not (ascending or descending or none)
C program to check if an array is sorted or not, i.e., in ascending order or ...
devyog - 01/12/2019 - 08:56
getx and gety functions in C
... 100 ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; moveto ( 200 + random ( ...
devyog - 22/11/2019 - 19:49
c program
C program is a collection of statements. ...
devyog - 05/07/2018 - 14:12