You are here

Page not found

Search results

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

    Yogesh Suneja - 23/11/2019 - 11:40

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

    Yogesh Suneja - 19/11/2019 - 09:06

  3. C program to implement stack data structure

    Stack program in C: C program to implement stack using array. C program #include ...

    Yogesh Suneja - 23/11/2019 - 11:40

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

    Yogesh Suneja - 14/10/2020 - 21:14

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

    Yogesh Suneja - 23/11/2019 - 11:40

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

    Yogesh Suneja - 23/11/2019 - 11:40

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

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

  8. 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." ...

    Yogesh Suneja - 23/11/2021 - 20:38

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

    Yogesh Suneja - 22/11/2019 - 22:04

  10. C++ program for prime numbers

    C++ program to print first n prime numbers. C++ program #include <iostream> #include <cmath> using ...

    Yogesh Suneja - 22/11/2019 - 22:07

Pages