Page not found
Search results
outtext and outtextxy functions
... at the specified coordinates (x, y) on the screen. C program #include<graphics.h> #include<conio.h> int ...
devyog - 23/11/2019 - 11:40
sprintf in c
... string. Previous content of string are overwritten. C program #include<stdio.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40
Conditional compilation in C programming language
... following code to quickly understand the scenario: C program #include <stdio.h> #define x 10 int ...
devyog - 23/11/2019 - 11:40
sin function in C
... angle(in radian). Declaration: double sin(double); C program #include <stdio.h> #include <math.h> int main ...
devyog - 22/11/2019 - 20:46
getdrivername function
... returns a pointer to the current graphics driver. C program for getdrivername #include <graphics.h> #include ...
devyog - 22/11/2019 - 20:26
getbkcolor function in C
... current background color is GREEN, color will be 2. C program for getbkcolor #include <graphics.h> #include <conio.h> ...
devyog - 22/11/2019 - 20:24
getx function in C
... of the current position. Declaration: int getx(); C program of getx #include <graphics.h> #include <conio.h> ...
devyog - 16/01/2018 - 19:08
getmaxx function in c
... mode and driver. Declaration: int getmaxx(); C program for getmaxx #include<graphics.h> #include<conio.h> ...
devyog - 08/01/2018 - 20:55
Cleardevice function in c
... of filling the screen with current background color. C program for cleardevice #include <graphics.h> #include <conio.h> ...
devyog - 08/01/2018 - 20:55
getmaxcolor function
... starts from zero. Declaration: int getmaxcolor(); C program of getmaxcolor #include<graphics.h> #include<conio.h> ...
devyog - 08/01/2018 - 20:55