Page not found
Search results
C read file
... Read file in C using fopen C programming code to open a file and print its contents on screen. #include ...
devyog - 25/10/2020 - 21:59
C program to find HCF and LCM
C program to find HCF and LCM: The code below finds the highest common factor and the least common multiple of two ...
devyog - 10/12/2019 - 20:50
Reverse a number in Java
... reverse or invert a number using recursion. You can use this code to check if a number is a palindrome number or not. If on reversing a ...
devyog - 05/12/2019 - 20:03
Garbage collection in Java
... available is more after garbage collection. You can use the code in a program or an application that uses a large amount of memory or where ...
devyog - 05/12/2019 - 18:51
Java program to print date and time
Java date and time program: Java code to print or display current system date and time. We are using the ...
devyog - 05/12/2019 - 18:35
Binary search in Java
Java program for binary search: This code implements the binary search algorithm. Please note that input numbers ...
devyog - 05/12/2019 - 09:11
Java program to convert Fahrenheit to Celsius
Java program to convert Fahrenheit to Celsius: This code does temperature conversion from the Fahrenheit scale to the Celsius ...
devyog - 04/12/2019 - 19:46
Java program to print alphabets
... program: Printing alphabets using a while loop (The code snippet shows only the body of the main method): char c = ...
devyog - 04/12/2019 - 09:16
If else program in Java
... programming if else statement // If else in Java code import java.util.Scanner ; class IfElse { ...
devyog - 04/12/2019 - 00:32
Floodfill function
... To change fill pattern and fill color use setfillstyle. Code given below draws a circle and then fills it. C program ...
devyog - 01/12/2019 - 08:56