You are here

Page not found

Search results

  1. C program to find roots of a quadratic equation

    C program to find roots of a quadratic equation: Coefficients are assumed to be ... roots = -b/a and product of its roots = c/a. Let's write the program now. (adsbygoogle = ...   return 0 ; } Output of program:  ...

    Yogesh Suneja - 04/11/2020 - 14:12

  2. Transpose of a matrix in C

    Transpose of a matrix in C language: This C program prints transpose of a matrix. To obtain it, we interchange rows and ... [ 10 ] ;     printf ( "Enter the number of rows and columns of a matrix \n " ) ;   scanf ( ...

    Yogesh Suneja - 13/12/2019 - 20:54

  3. Subtract matrices

    C code to subtract matrices of any order. This program finds the difference between corresponding elements of two matrices and ... [ 10 ] ;       printf ( "Enter the number of rows and columns of matrix \n " ) ;     scanf ( ...

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

  4. Linked list in C

    ... struct node * next ; } ; Linked list program in C #include <stdio.h> #include <stdlib.h> ...

    Yogesh Suneja - 08/12/2019 - 00:36

  5. C program to check if an array is sorted or not (ascending or descending or none)

    C program to check if an array is sorted or not, i.e., in ascending order or descending order. Variables "a" and "d" in the program are for ascending and descending respectively and are initialized to ...

    Yogesh Suneja - 01/12/2019 - 08:56

  6. Symmetric matrix in C

    C program to check if a matrix is symmetric or not: we find the transpose of the ... matrix. For a symmetric matrix A, A T = A. C program to check if a matrix is symmetric or not #include<stdio.h> ... ] [ 10 ] ;   printf ( "Enter the number of rows and columns of matrix \n " ) ;   scanf ( ...

    Yogesh Suneja - 03/12/2019 - 22:19

  7. String concatenation in C

    C program to concatenate two strings; for example, if the two input strings are ... to dot it without using the library function, see another program below. (adsbygoogle = ... || []).push({}); C concatenate string program #include <stdio.h> #include <string.h> int ...

    Yogesh Suneja - 04/10/2020 - 11:26

  8. C sound program

    ... sound of a specified frequency. Used for adding music to a C program, try to use some random values in loop, vary delay and enjoy. ...

    Yogesh Suneja - 28/09/2018 - 10:51

  9. c program

    C program is a collection of statements. ...

    Yogesh Suneja - 05/07/2018 - 14:12

  10. C program to print date

    C program to print current system date. To print date, we will use getdate ...

    Yogesh Suneja - 13/03/2018 - 12:40

Pages