Page not found
Search results
sector function in c
... y, int stangle, int endangle, int xradius, int yradius); C programming code for sector #include <graphics.h> #include <conio.h> ...
devyog - 08/01/2018 - 20:55
gettime c
gettime in c: gettime function is used to find current system time. We pass address of a structure varibale of type ( struct time ). C programming code for gettime #include<stdio.h> #include<dos.h> main ( ...
devyog - 03/01/2018 - 19:32
linerel function in c
... use getx and gety to find the current position. C programming code for linerel #include <graphics.h> #include <conio.h> ...
devyog - 28/12/2017 - 21:34
imagesize function in c
... int imagesize(int left, int top, int right, int bottom); C programming code for imagesize #include <graphics.h> #include <conio.h> ...
devyog - 28/12/2017 - 21:34
ellipse function in c
... and end angle should be 0 and 360 respectively. C programming code for ellipse #include<graphics.h> #include<conio.h> ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; ellipse ( 100 , 100 , ...
devyog - 28/12/2017 - 21:34
getche in C
... character and that character is printed on the screen. C code for getche #include<stdio.h> #include<conio.h> main ...
devyog - 24/12/2017 - 18:14
sleep in C
... seconds. Declaration: void sleep(unsigned seconds); C programming code for sleep #include <stdio.h> #include <dos.h> int ...
devyog - 22/11/2019 - 20:22
Function nosound in C
... off the PC speaker. Declaration: void nosound(); C programming code for nosound #include <dos.h> int main ( ) { ...
devyog - 22/11/2019 - 20:21
setdate c
setdate function is used to change system date. C programming code for setdate #include<stdio.h> #include<conio.h> ... ) ; return 0 ; } C programming: dos.h ...
devyog - 03/01/2018 - 19:33
C project development tutorial
C project development tutorial: This tutorial is for all those who wish to make ... can be a trouble. 2) Always create a back up of your source code, you start your project by writing some portion and it works fine but at a ...
devyog - 01/12/2019 - 08:56