Page not found
Search results
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> ... ; return 0 ; } C programming: dos.h ...
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 ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; moveto ( 250 , 250 ) ...
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> ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; ellipse ( 100 , 100 , ...
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 ... ] ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; circle ( 200 , 200 , ...
devyog - 28/12/2017 - 21:34
Floyd's triangle in Java
Java program to display Floyd's triangle, in the triangle, there are n integers in ... [ ] ) { int n, num = 1 , c, d ; Scanner in = new Scanner ( System . in ) ... "Floyd's triangle:" ) ; for ( c = 1 ; c <= n ; c ++ ) { for ...
devyog - 05/12/2019 - 00:40
Function nosound in C
... off the PC speaker. Declaration: void nosound(); C programming code for nosound #include <dos.h> int main ( ... ; return 0 ; } C programming: dos.h ...
devyog - 22/11/2019 - 20:21
setdate c
setdate function is used to change system date. C programming code for setdate #include<stdio.h> ... ) ; return 0 ; } C programming: dos.h ...
devyog - 03/01/2018 - 19:33
Settextstyle function in c
... EUROPEAN_FONT , BOLD_FONT } ; C programming source code for settextstyle #include <graphics.h> ... 0 ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; for ( font = 0 ; ...
devyog - 08/01/2018 - 20:55
closegraph function in c
... called initgraph. Declaration: void closegraph(); C code of closegraph #include<graphics.h> #include<conio.h> ... initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; outtext ( "Press any key to ...
devyog - 08/01/2018 - 20:55
Java programs
Java programming: Java program consists of instructions that will be executed on a machine to perform ... ] arguments ) { & # 13 ; int c ; //declaring a variable & # 13 ; /* Using a ... & # 13 ; & # 13 ; for ( c = 1 ; c & # 13 ; Output :& # 13 ; < img ...
devyog - 31/05/2024 - 09:46