Page not found
Search results
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
Palindrome in Java
...
devyog - 12/10/2020 - 22:21
Multiplication table in Java
... String args [ ] ) { int n, c ; System . out . println ( "Enter an integer to print ... Download Multiplication table program class file. Code: import java.util.Scanner ; class Tables { ...
devyog - 30/11/2019 - 20:57
outtext and outtextxy functions
... at the specified coordinates (x, y) on the screen. C program #include<graphics.h> #include<conio.h> int ... gm ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; outtext ( "To display text ...
devyog - 23/11/2019 - 11:40
getdrivername function
... returns a pointer to the current graphics driver. C program for getdrivername #include <graphics.h> #include ... ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; name = getdrivername ( ) ; ...
devyog - 22/11/2019 - 20:26
getmaxcolor function
... starts from zero. Declaration: int getmaxcolor(); C program of getmaxcolor #include<graphics.h> #include<conio.h> ... ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; max_colors = getmaxcolor ( ...
devyog - 08/01/2018 - 20:55
Matrix addition in Java
... args [ ] ) { int m, n, c, d ; Scanner in = new Scanner ( System . in ) ... elements of first matrix" ) ; for ( c = 0 ; c < m ; c ++ ) for ( d = ...
devyog - 05/12/2019 - 20:07