You are here

Page not found

Search results

  1. 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 ...

    Yogesh Suneja - 11/10/2020 - 00:24

  2. Factorial program in Java

    Java program to find factorial of a number, if the number is negative, then an error message is ...

    Yogesh Suneja - 05/12/2019 - 00:13

  3. 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 ...

    Yogesh Suneja - 02/11/2023 - 02:56

  4. 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> ...

    Yogesh Suneja - 11/10/2020 - 11:19

  5. 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> ...

    Yogesh Suneja - 11/10/2020 - 11:36

  6. 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 ) ...

    Yogesh Suneja - 22/11/2019 - 19:42

  7. 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 ... || []).push({}); Download HCF and LCM program. Output of program: C program to find hcf and lcm using ...

    Yogesh Suneja - 10/12/2019 - 20:50

  8. Java program to find all substrings of a string

    Java program to find substrings of a string: This program finds all substrings of a string and ...

    Yogesh Suneja - 05/12/2019 - 18:31

  9. String length in C

    C program to find length of a string, for example, the length of the string "C programming" ... To find it, we can use strlen function of "string.h." C program to find length of a string without using strlen function , recursion ...

    Yogesh Suneja - 22/10/2020 - 21:08

  10. Java program to find the largest of three numbers

    Java program to find the largest of three numbers, if the numbers are unequal, then "numbers ...

    Yogesh Suneja - 05/12/2019 - 00:04

Pages