You are here

Page not found

Search results

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

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

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

  4. C++ program for prime numbers

    C++ program to print first n prime numbers. C++ program #include <iostream> #include <cmath> using ...

    Yogesh Suneja - 22/11/2019 - 22:07

  5. C++ program to reverse a number

    C++ program to reverse a number using a class. It can be used to check if an integer is a palindrome or not. C++ program to reverse a number #include <iostream> using ...

    Yogesh Suneja - 22/11/2019 - 22:04

  6. C++ program to add two matrices

    C++ program to add two matrices. C++ matrix addition program #include <iostream> using namespace std ;   ...

    Yogesh Suneja - 31/10/2019 - 20:06

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

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

    Yogesh Suneja - 25/10/2020 - 14:07

  10. C program to delete an element from an array

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

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

Pages