You are here

Page not found

Search results

  1. Bubble sort in C

    ... || []).push({}); Bubble sort program in C /* Bubble sort code */ #include <stdio.h> ... , c , d , swap ;   printf ( "Enter number of elements \n " ) ;   scanf ( "%d" , & n ...

    devyog - 14/10/2020 - 21:14

  2. C program to find maximum element in a matrix

    C program to find the largest or the maximum element in a matrix. C program #include <stdio.h> int main ( ) {   ... ] , maximum ;   printf ( "Enter the number of rows and columns of matrix \n " ) ;   scanf ( ...

    devyog - 03/12/2019 - 22:15

  3. C program to check orthogonal matrix

    C program to check if a matrix is orthogonal or not. For an orthogonal matrix AA T = I. Example of an orthogonal matrix: 1 0 0 1 C program #include <stdio.h> int main ( ) {   ... ] [ 10 ] ;   printf ( "Enter the number of rows and columns of matrix \n " ) ;   scanf ( ...

    devyog - 23/11/2019 - 11:40

  4. 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 the frequency of characters in a string, i.e., which character ... and special characters) are ignored. You can modify this program to handle uppercase and special symbols. ...

    devyog - 23/11/2019 - 11:40

  5. Data structures in C

    ... unique advantages. We can choose which one to use in our program according to our requirements once we are familiar with different of ... element in array Minimum element in array Reverse array Insert element in array Delete element from array ...

    devyog - 12/12/2019 - 19:05

  6. ceil in C - math.h

    Ceil function is used to round up a number i.e. it returns the smallest number which is greater than argument passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int main ... ;   return 0 ; } Output of program: ...

    devyog - 23/11/2019 - 11:40

  7. C++ program to add two complex numbers

    C++ program to add two complex numbers. C++ programming code #include ... << "Enter a and b where a + ib is the first complex number." ;     cout << " \n a = " ;     cin ... << "Enter c and d where c + id is the second complex number." ;     cout << " \n c = " ;     cin ...

    devyog - 13/07/2018 - 12:29

  8. C program to check subsequence

    C program to check Subsequence; don't confuse it with substring. In our program, we check if a string is a subsequence of another. A user will ... we test if one of them is a subsequence of the other. The program prints yes if either the first string is a subsequence of the second ...

    devyog - 25/10/2020 - 14:07

  9. Leap year program in C

    Leap year program in C to check if a year is a leap year or not, a leap year is one that ... divisible by 400. Read more about a Leap year . The program is based on the Gregorian Calendar. ... || []).push({}); Leap year C program   #include <stdio.h> int main ( ) {   ...

    devyog - 02/10/2020 - 00:25

  10. C program to insert substring into a string

    C program to insert a substring into a string: This code inserts a string into ... we obtain the string "C programming is amazing". In our C program we will make a function which performs the desired task and pass three ... You can insert the string at any valid position. C program #include <stdio.h> #include <string.h> #include ...

    devyog - 23/11/2019 - 11:40

Pages