Page not found
Search results
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 ...
devyog - 06/04/2025 - 14:41
Linear search in C
... let's see how it works in computers. 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 ( ) { ...
devyog - 05/04/2025 - 22:18
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 ...
devyog - 14/10/2020 - 19:48
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
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 , ...
devyog - 14/10/2020 - 19:35
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 ( ) ...
devyog - 02/10/2020 - 16:44
C programs
C programs with output showing usage of operators, loops, functions, arrays, ... write programs; most of these will work with GCC and Dev C++ compilers. The first program, prints "Hello World." ...
devyog - 16/02/2025 - 16:32
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> ...
devyog - 11/10/2020 - 11:19
C program to add two numbers using pointers
C program for the addition of two numbers using pointers. In the program, we have ... of operator and '*' is value at the address operator. C program #include <stdio.h> int main ( ) { ...
devyog - 06/04/2025 - 13:33
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 ( ) ...
devyog - 11/10/2020 - 00:24