You are here

Page not found

Search results

  1. pow10 function in C

    ... ;     return 0 ; } C programming: math.h ...

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

  2. mkdir in C

    Function mkdir is used to create a directory.

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

  3. Matrix addition in Java

    Java program to add two matrices of any order. You can modify it to add any number ... 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. Matrix multiplication in Java

    Java program to multiply two matrices, before multiplication, we check whether they ... )   {     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

  5. getcolor function

    ... drawing color is WHITE then a will be 15. See colors in C graphics . C programming code for getcolor #include<graphics.h> ...

    Guest (not verified) - 09/06/2018 - 20:50

  6. Transpose of a matrix in Java

    Java program to find the transpose of a matrix (of any order), we interchange its ... args [ ] )   {     int m, n, c, d ;     Scanner in = new Scanner ( System . in ) ... elements of the matrix" ) ;     for ( c = 0 ; c < m ; c ++ )       for ( d = ...

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

  7. log10

    ... a number. Declaration: double log10(double number); C programming code for log10 #include <stdio.h> #include ... ;   return 0 ; } Output of program: ...

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

  8. floor function

    ... will be 2.00. Declaration: double floor(double x); C programming code for floor #include <stdio.h> #include ... ;   return 0 ; } Output of program: ...

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

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

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

Pages