You are here

Page not found

Search results

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

    Yogesh Suneja - 23/11/2019 - 11:40

  2. 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 ( ) ; ...

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

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

    Yogesh Suneja - 05/12/2019 - 20:07

  4. delline

    ... is present and moves all the lines below it one line up. C programming code for delline #include<stdio.h> ... ) ;     return 0 ; } C programming: conio.h ...

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

  5. outtext function

    ... position. Declaration: void outtext(char *string); C programming code for outtext #include<graphics.h> ...        initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;        outtext ( "To display text ...

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

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

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

  7. Matrix multiplication in Java

    ... )   {     int m, n, p, q, sum = 0 , c, d, k ;       Scanner in = new Scanner ( System . in ... of first matrix" ) ;       for ( c = 0 ; c < m ; c ++ )       for ( d = ...

    Yogesh Suneja - 05/12/2019 - 20:30

  8. log10

    ... a number. Declaration: double log10(double number); C programming code for log10 #include <stdio.h> #include ...

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

  9. floor function

    ... will be 2.00. Declaration: double floor(double x); C programming code for floor #include <stdio.h> #include ...

    Guest (not verified) - 08/01/2018 - 20:55

  10. Bubble sort in Java

    ... ( String [ ] args ) {     int n, c, d, swap ;     Scanner in = new Scanner ( System . in ... n + " integers" ) ;       for ( c = 0 ; c < n ; c ++ )       array [ c ] = ...

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

Pages