Page not found
Search results
Factorial program in C
Factorial program in C using a for loop, using recursion and by creating a ... f ; printf ( "Enter an integer to find its factorial \n " ) ; scanf ( "%d" , & n ...
devyog - 11/10/2020 - 00:24
Factorial program in Java
Java program to find factorial of a number, if the number is negative, then an error message is ...
devyog - 05/12/2019 - 00:13
Java programs
Java programming: Java program consists of instructions that will be executed on a machine to perform ... Get Input From User Addition Find Odd or Even Fahrenheit to celsius Java ...
devyog - 31/05/2024 - 09:46
Even or odd program in C
... || []).push({}); Odd or even program in C using modulus operator #include <stdio.h> int ... = window.adsbygoogle || []).push({}); C program to find odd or even using bitwise operator #include <stdio.h> int ...
devyog - 06/04/2025 - 14:41
Linear search in C
... 20 houses. But you forgot the house number, so how do you find the house number where your friend lives? We will assume that the only way ... || []).push({}); Linear search program in C #include <stdio.h> int main ( ) { ...
devyog - 05/04/2025 - 22:18
C program to find roots of a quadratic equation
C program to find roots of a quadratic equation: Coefficients of the equation are assumed to ... = -b/a and the product of its roots = c/a. Let's look at the program now. (adsbygoogle = ...
devyog - 16/02/2025 - 16:44
C program to find the largest number in an array
C program to find the largest number in an array using a function and without it . We ... = window.adsbygoogle || []).push({}); C program to find largest number in an array #include <stdio.h> ...
devyog - 11/10/2020 - 11:19
C programs
... will work with GCC and Dev C++ compilers. The first program, prints "Hello World." ... However, it's a good idea to learn C before learning C++ or Java. C++ is object-oriented and contains all features of C, so learning C help ...
devyog - 16/02/2025 - 16:32
C program to find minimum value in an array
C program to find the minimum or the smallest element in an array. It also prints the ... = window.adsbygoogle || []).push({}); C program to find smallest number in an array #include <stdio.h> ...
devyog - 11/10/2020 - 11:36
C program to find nCr and nPr
C program to find nCr and nPr, remember, nCr = n!/(r!*(n-r)!) and nPr = n!/(n-r)!. C ... using a function #include <stdio.h> long factorial ( int ) ; long find_ncr ( int , int ) ...
devyog - 22/11/2019 - 19:42