Page not found
Search results
gety function in c
... of current position. Declaration: int gety(); C programming source code for gety #include <graphics.h> #include <conio.h> ...
devyog - 08/01/2018 - 20:55
setviewport function in c
... note that the point (left, top) becomes the new origin. C programming source code for setviewport #include<graphics.h> ...
devyog - 08/01/2018 - 20:55
Static method in Java with example
... result = Math . min ( 10 , 20 ) ; //calling static method min by writing class name ...
devyog - 04/12/2019 - 20:12
Addition of two numbers in C
... will continue to do what it's instructed. In C language, adding two numbers is the arithmetic operation of adding them using ... = window.adsbygoogle || []).push({}); C program to add two numbers #include <stdio.h> int main ( ...
devyog - 06/04/2025 - 08:03
Even or odd program in C
... will instantly know whether it's odd or even. Let's write C programs to check odd or even using different methods. In the decimal ... || []).push({}); Odd or even program in C using modulus operator #include <stdio.h> int main ( ) ...
devyog - 06/04/2025 - 14:41
Java program to find the largest of three numbers
... || []).push({}); Java programming source code import java.util.Scanner ; class Largest ...
devyog - 05/12/2019 - 00:04
Matrix addition in C
Matrix addition in C language to add two matrices, i.e., compute their sum and print it. A user ... || []).push({}); Addition of two matrix in C #include <stdio.h> int main ( ) { int m , n , c , d , first [ 10 ] [ 10 ] , second [ 10 ] ...
devyog - 06/04/2025 - 12:34
Division in C
We can divide two numbers in C language using the division operator '/'. Consider the expression z = ... result is assigned to variable z. Integer division in C When we divide two integers the result may or may not be an integer. ...
devyog - 06/04/2025 - 14:06
C program to add two numbers using pointers
C program for the addition of two numbers using pointers. In the program, we ... of operator and '*' is value at the address operator. C program #include <stdio.h> int main ( ) { ... using pointers program. Output of program: C program to add numbers using call by reference #include <stdio.h> ...
devyog - 06/04/2025 - 13:33
Settextstyle function in c
... EUROPEAN_FONT , BOLD_FONT } ; C programming source code for settextstyle #include <graphics.h> #include ...
devyog - 08/01/2018 - 20:55