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

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

  2. C program to delete duplicate elements from an array

    C program to delete duplicate elements from an array. For example, if an array ... element we get the following array: 1, 6, 2, 9. C program #include <stdio.h> int main ( ) {   ... = 0 , c , d ;   printf ( "Enter number of elements in array \n " ) ;   scanf ( "%d" , ...

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

  3. Captcha program in C

    C program to generate a captcha which is a random string generated using an algorithm. We will use the random function in the program. These are used in typing tutors and on websites to check whether a human is operating a website. C captcha program #include <stdlib.h> #include <dos.h> #include ...

    Yogesh Suneja - 23/11/2019 - 12:15

  4. C program to implement stack data structure

    Stack program in C: C program to implement stack using array. C program #include <stdio.h> #include <stdlib.h> int ...

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

  5. traffic light program in c, traffic light simulation

    Traffic light Simulation: Traffic light program in C presents what happens in our daily life at traffic light signals. ... press a key to start the traffic light simulation. C program #include<graphics.h> #include<conio.h> ...

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

  6. C++ program to add two numbers

    C++ program to add two numbers. C++ programming code #include ...       return 0 ; } C++ addition program using class #include <iostream> using namespace ...

    Yogesh Suneja - 22/02/2018 - 13:39

  7. C program to restrict mouse pointer in a circle

    C program #include<graphics.h> #include<conio.h> ...

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

  8. Print an int (integer) in C

    ... and we print it. Input is done using scanf function, 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

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

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

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

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

Pages