You are here

Page not found

Search results

  1. Palindrome in C

    C program to check if a string or a number is palindrome or not . A palindrome ... then the string is a palindrome otherwise not. C program to check palindrome without using string functions . Some ...

    Yogesh Suneja - 14/10/2020 - 19:48

  2. Addition of two numbers in C

    The addition of two numbers in C language is the arithmetic operation of adding them and printing their sum on ... window.adsbygoogle || []).push({}); Addition program in C #include <stdio.h> int main ( ) { ...

    Yogesh Suneja - 25/10/2020 - 18:22

  3. C program to check whether a character is vowel or consonant

    C program to check whether a character is a vowel or consonant: A user inputs a ... = window.adsbygoogle || []).push({}); C program to check vowel or consonant using if else In this program, we ...

    Yogesh Suneja - 11/10/2020 - 20:05

  4. Even or odd program in C

    C programs to check odd or even using different methods. In the decimal number ... || []).push({}); Odd or even program in C using modulus operator #include <stdio.h> int main ( ) ...

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

  5. C program to reverse a string

    C program to reverse a string that a user inputs. If the string is "hello" then, the output is "olleh." C program to reverse a string using strrev , without using strrev , ...

    Yogesh Suneja - 14/10/2020 - 19:35

  6. C substring, substring in C

    C substring program to find substring of a string and its all substrings . A substring ... = window.adsbygoogle || []).push({}); C substring program #include <stdio.h>   int main ( ) ...

    Yogesh Suneja - 02/10/2020 - 16:44

  7. Linear search in C

    Linear search in C to find whether a number is present in an array. If it's present, then at ... || []).push({}); Linear search program in C #include <stdio.h> int main ( ) {   int ...

    Yogesh Suneja - 13/12/2019 - 21:04

  8. C program to find the largest number in an array

    C program to find the largest number in an array using a function and ... = window.adsbygoogle || []).push({}); C program to find largest number in an array #include <stdio.h> ...

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

  9. Sum of digits in C

    Sum of digits C program to calculate the sum of digits of a number, we use modulus operator (%) ... []).push({}); Sum of digits of a number in C #include <stdio.h> int main ( ) {     int ...

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

  10. Factorial program in C

    Factorial program in C using a for loop, using recursion and by creating a function ... || []).push({}); Factorial in C using a for loop #include <stdio.h>   int main ( ) ...

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

Pages