You are here

Page not found

Search results

  1. Java program to add two numbers

    Java program to add two numbers, a user enters two integers, and we calculate their ... add two floating-point numbers. Download Add numbers program class file. You can also create a method that returns the sum of two ... || []).push({}); Output of program: Java program to add two numbers using BigInteger class ...

    devyog - 04/12/2019 - 19:35

  2. Subtract matrices

    C code to subtract matrices of any order. This program finds the difference between corresponding elements of two matrices and then print the resultant matrix. C program #include <stdio.h>   int main ( ) { ...

    devyog - 23/11/2019 - 11:40

  3. setlinestyle in C

    ...  DASHED_LINE ,    USERBIT_LINE } ; C program #include <graphics.h> int main ( ) { ...

    devyog - 23/11/2019 - 11:40

  4. sprintf in c

    Sprintf in C : It's just like printf but output is sent to a string, rather than standard ... to string. Previous content of string are overwritten. C program #include<stdio.h> int main ( ) {   ...

    devyog - 23/11/2019 - 11:40

  5. Getarcoords function in C

    ... type arccoordstype is passed to function getarccoords. C program of getarccoords #include<graphics.h> #include<conio.h> ...

    devyog - 12/10/2020 - 22:47

  6. drawpoly function in c

    ... last point(320, 150) in array is same as first. See the program below and then its output, it will further clear your understanding. C program for drawpoly #include <graphics.h> #include <conio.h> ...

    devyog - 08/01/2018 - 20:55

  7. C smiling face animation

    This animation using C draws a smiling face which appears at random positions on the screen. C program #include<graphics.h> #include<conio.h> ...

    devyog - 23/11/2019 - 11:40

  8. Press me button game in c, download press-me-button game

    Press me game in C:- In this game when you try to bring mouse near a button it moves away from ... very close to button we move the button suitably. C program #include <stdio.h> #include <conio.h> #include ...

    devyog - 23/11/2019 - 11:40

  9. log function in C

    ... exponential number. Declaration: double log(double); C program to find logarithm of a number #include <stdio.h> ...

    devyog - 27/11/2019 - 18:40

  10. ceil in C - math.h

    ... passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int main ...

    devyog - 23/11/2019 - 11:40

Pages