Page not found
Search results
drawpoly function in c
... last point(320, 150) in array is same as first. See the program below and then its output, it will further clear your understanding. C program for drawpoly #include <graphics.h> #include <conio.h> ...
devyog - 08/01/2018 - 20:55
Function wherey in C
... cursor position. Declaration: int wherey(); C program for wherey #include <stdio.h> #include <conio.h> ...
devyog - 14/12/2019 - 21:30
Function wherex in C
... cursor position. Declaration: int wherex(); C program for wherex #include <stdio.h> #include <conio.h> ...
devyog - 14/12/2019 - 21:28
setlinestyle in C
... , USERBIT_LINE } ; C program #include <graphics.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40
cos in C - math.h
... Declaration: double cos(double); C program #include <stdio.h> #include <math.h> int main ...
devyog - 23/11/2019 - 11:40
C smiling face animation
... which appears at random positions on the screen. C program #include<graphics.h> #include<conio.h> ...
devyog - 23/11/2019 - 11:40
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
getmaxx and getmaxy functions in C
... Y coordinate for current graphics mode and driver. C program #include<graphics.h> #include<conio.h> ...
devyog - 23/11/2019 - 11:40