Page not found
Search results
Armstrong number in C
Armstrong number C program to check whether a number is an Armstrong number or not, it's a number ... then the number is an Armstrong number otherwise not. C program to print Armstrong numbers ...
devyog - 12/12/2019 - 21:06
C++ program to add two matrices
C++ program to add two matrices. C++ matrix addition program #include <iostream> using ...
devyog - 31/10/2019 - 20:06
C program to find the frequency of characters in a string
C program to find the frequency of characters in a string: This program counts ... For example, in the string "code" each of the characters 'c,' 'd,' 'e,' and 'o' has occurred one time. Only lower case alphabets ...
devyog - 23/11/2019 - 11:40
C program to implement stack data structure
Stack program in C: C program to implement stack using array. C program #include ...
devyog - 23/11/2019 - 11:40
C program to swap two numbers
C program to swap two numbers with and without using third variable , using ... 4 and b = 5, after swapping them, a = 5, b = 4. In the first C program, we use a temporary variable to swap two numbers. ...
devyog - 19/11/2019 - 09:06
C program to reverse words in a string
C program to reverse words in a string or sentence, for example, if the input string is "c++ programming language" then the output will be "++c gnimmargorp egaugnal" ...
devyog - 23/11/2019 - 11:40
Bubble sort in C
Bubble sort in C to arrange numbers in ascending order; you can modify it for descending order ... || []).push({}); Bubble sort program in C /* Bubble sort code */ #include <stdio.h> int main ...
devyog - 14/10/2020 - 21:14
C program remove spaces, blanks from a string
C program to remove spaces or excess blanks from a string, For example, consider the string "C programming" There are two spaces in this string, so our program will ...
devyog - 23/11/2019 - 11:40
String length in C
C program to find length of a string, for example, the length of the string "C programming" is 13 (space character is counted). The null character isn't ...
devyog - 22/10/2020 - 21:08
C++ program to reverse a number
C++ program to reverse a number using a class. It can be used to check if an integer is a palindrome or not. C++ program to reverse a number #include <iostream> using ...
devyog - 22/11/2019 - 22:04