Page not found
Search results
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
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
setlinestyle in C
... DASHED_LINE , USERBIT_LINE } ; C program #include <graphics.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40
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
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
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
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
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
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
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