Page not found
Search results
pieslice function in c
... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; pieslice ( 200 , 200 , ... ; return 0 ; } C programming: graphics.h ...
devyog - 28/12/2017 - 21:34
pow10 function in C
... ; return 0 ; } C programming: math.h ...
devyog - 22/11/2019 - 20:45
mkdir in C
Function mkdir is used to create a directory.
devyog - 22/11/2019 - 20:20
C program to display mouse pointer in textmode
... , & i , & o ) ; } C programming: Mouse Programs ...
devyog - 26/02/2018 - 17:36
getimage function in c
... Smiling face animation program using getimage. C programming: graphics.h ...
devyog - 28/12/2017 - 21:34
putimage function in c
putimage function outputs a bit image onto the screen. ...
devyog - 28/12/2017 - 21:34
Palindrome in Java
...
devyog - 12/10/2020 - 22:21
getcolor function
... drawing color is WHITE then a will be 15. See colors in C graphics . C programming code for getcolor #include<graphics.h> ...
Guest (not verified) - 09/06/2018 - 20:50
String length using strlen
C program to find string length using strlen function of "string.h" header ... length of a string. Declaration: int strlen(char*); C programming code for strlen #include <string.h> int main ( ) { char s [ ] = "C program" ; int length ; length = ...
devyog - 07/01/2018 - 23:42
Floodfill function
... Code given below draws a circle and then fills it. C program #include <graphics.h> #include <conio.h> main ( ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; setcolor ( RED ) ; ...
devyog - 01/12/2019 - 08:56