You are here

Page not found

Search results

  1. Selection sort in C

    Selection sort in C to sort numbers of an array in ascending order. With a little modification, ... || []).push({}); Selection sort program in C #include <stdio.h> int main ( ) {   int array [ 100 ] , n , c , d , position , t ;   printf ( "Enter number of ...

    devyog - 25/10/2020 - 14:26

  2. Decimal to binary in C

    Decimal to binary in C to convert an integer from decimal number system (base-10) to binary number ... = window.adsbygoogle || []).push({}); C program to convert decimal to binary #include <stdio.h> int ... Download Decimal binary program. This code only prints binary of an integer. Still, we may wish to perform operations ...

    devyog - 10/10/2020 - 15:27

  3. Print an int (integer) in C

    How to print an integer in C language? A user inputs an integer, and we print it. Input is done using ... and the number is printed on screen using printf. C program to print an int (integer) #include <stdio.h>   int ... Output of the program: C program to print first hundred positive integers [1, 100] using a for loop: ...

    devyog - 12/10/2020 - 22:40

  4. C program for pattern matching

    Pattern matching in C: C program to check if a string is present in an another string, for example, the string "programming" is present in the string "C programming". If it's present, then its location (i.e. at which position it's ...

    devyog - 01/12/2019 - 08:56

  5. C program to delete a file

    C program to delete a file whose name (with extension) a user will input. The ... the file, then it will be displayed by perror function. C file deletion program #include <stdio.h> int main ( ) ... overwritten on the storage medium by other data. C programming: C programs ...

    devyog - 23/11/2019 - 11:40

  6. C program to add, subtract, multiply and divide Complex Numbers, complex arithmetic

    C program to add, subtract, multiply and divide complex numbers. It is a menu ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> struct ... x , y , z ;   struct complex a , b , c ;   while ( 1 )   {     printf ( ...

    devyog - 23/11/2019 - 11:40

  7. Insertion sort in C

    Insertion sort in C: C program for insertion sort to sort numbers. This code implements insertion sort algorithm to arrange numbers of an array in ...

    devyog - 12/11/2019 - 14:29

  8. C program to print Armstrong numbers

    C program to print Armstrong numbers, in the program, a user inputs two ... familiar with Armstrong numbers see Armstrong number in C . (adsbygoogle = window.adsbygoogle || []).push({}); C program #include <stdio.h> int check_armstrong ( int ...

    devyog - 14/12/2019 - 21:39

  9. C program to check orthogonal matrix

    C program to check if a matrix is orthogonal or not. For an orthogonal matrix ... T = I. Example of an orthogonal matrix: 1 0 0 1 C program #include <stdio.h> int main ( ) {   int m , n , p , c , d , k , sum = 0 ;   int matrix [ 10 ] ...

    devyog - 23/11/2019 - 11:40

  10. C program to list files of a directory

    C program to list all files, present in a directory/folder, in which its ... present. For example, if the executable file is present in C:\\TC\\BIN, then it will list all the files present in C:\\TC\\BIN. C program (Turbo C compiler only) #include <stdio.h> ...

    devyog - 24/11/2019 - 13:47

Pages