Page not found
Search results
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 ...
adminps9 - 23/11/2019 - 12:15
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 ...
adminps9 - 23/11/2019 - 11:40
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> ...
adminps9 - 23/11/2019 - 11:40
C++ program for prime numbers
C++ program to print first n prime numbers. C++ program #include <iostream> #include <cmath> using ...
adminps9 - 22/11/2019 - 22:07
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 ...
adminps9 - 22/11/2019 - 22:04
C++ program to add two matrices
C++ program to add two matrices. C++ matrix addition program #include <iostream> using namespace std ; ...
adminps9 - 31/10/2019 - 20:06
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 ...
adminps9 - 22/02/2018 - 13:39
C program to restrict mouse pointer in a circle
C program #include<graphics.h> #include<conio.h> ...
adminps9 - 01/12/2019 - 08:56
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 ...
adminps9 - 25/10/2020 - 14:07
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 ( ) { ...
adminps9 - 11/10/2020 - 14:08