You are here

Page not found

Search results

  1. Reverse array in C

    C program to reverse an array using an additional array , using swapping ... || []).push({}); Reverse array C program #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 27/11/2019 - 20:55

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

    Yogesh Suneja - 24/11/2019 - 13:47

  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 ( ) {   ...

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

  4. Area of a triangle in C

    C program to find the area of a triangle using Heron's or Hero's formula. The ... The program assumes that a user will enter valid input. C program to find area of a triangle #include <stdio.h> #include ...

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

  5. C program to delete an element from an array

    C program to delete an element in an array: This program deletes or removes an ... || []).push({}); Remove element from array C program #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 11/10/2020 - 14:08

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

    Yogesh Suneja - 12/10/2020 - 22:40

  7. C program to find nCr and nPr

    C program to find nCr and nPr, remember, nCr = n!/(r!*(n-r)!) and nPr = n!/(n-r)!. C program to find nPr and nCr using a function #include <stdio.h> ...

    Yogesh Suneja - 22/11/2019 - 19:42

  8. C program to restrict mouse pointer in a circle

    C program #include<graphics.h> #include<conio.h> ... ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;     if ( ! initmouse ( ) ...

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

  9. C program to generate random numbers

    C program to generate pseudo-random numbers using rand and random function (Turbo C compiler only). As the random numbers are generated by an algorithm used in a ...

    Yogesh Suneja - 29/09/2018 - 15:28

  10. C program to insert an element in an array

    C program to insert an element in an array, for example, consider an array a[10] ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ...

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

Pages