You are here

Page not found

Search results

  1. 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 ) ...

    Yogesh Suneja - 28/12/2017 - 21:34

  2. 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 , ...

    Yogesh Suneja - 28/12/2017 - 21:34

  3. 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 , ...

    Yogesh Suneja - 28/12/2017 - 21:34

  4. How to take input from a user in Java

    Java program to get input from a user, we are using Scanner class for it. The program asks the user to enter an integer, a floating-point number, and a ... in "java.util" package, so we import this package into our program. We create an object of the class to use its methods. Consider the ...

    Yogesh Suneja - 01/12/2019 - 08:56

  5. 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 ...

    Yogesh Suneja - 05/12/2019 - 00:40

  6. 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 ...

    Yogesh Suneja - 22/11/2019 - 20:21

  7. setdate c

    setdate function is used to change system date. C programming code for setdate #include<stdio.h> ... ) ;     return 0 ; } C programming: dos.h ...

    Yogesh Suneja - 03/01/2018 - 19:33

  8. 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 ...

    Yogesh Suneja - 08/01/2018 - 20:55

  9. 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 ; ...

    Yogesh Suneja - 08/01/2018 - 20:55

  10. Garbage collection in Java

    Java program to perform garbage collection: Free memory in Java virtual machine is ... reference of current RunTime object. Garbage collection program in Java import java.util.* ; class ...   } } Download Garbage collection program class file. Output of program: The amount of available ...

    Yogesh Suneja - 05/12/2019 - 18:51

Pages