Page not found
Search results
Web browser project in C, C program to open a website/url
C program to open a website entered by a user. It will launch Mozilla Firefox web ... using an another web browser then you can change path in the program. C program #include <stdio.h> #include <conio.h> #include ...
devyog - 23/11/2019 - 11:40
Binary search in C
Binary search in C language to find an element in a sorted array. If the array isn't sorted, you must sort it ... is present in the list, then we print its location. The program assumes that the input numbers are in ascending order. ... || []).push({}); Binary search program in C #include <stdio.h> int main ( ) { ...
devyog - 14/10/2020 - 19:11
C program to print Armstrong numbers
C program to print Armstrong numbers, in the program, a user inputs two integers, and we print all Armstrong numbers between ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> int check_armstrong ( int ...
devyog - 14/12/2019 - 21:39
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 driven program in which a user will have to enter his/her choice to perform an ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> struct ...
devyog - 23/11/2019 - 11:40
C program to reverse words in a string
C program to reverse words in a string or sentence, for example, if the input ... Then repeat the previous step until the string ends. C program #include <stdio.h> #include <string.h> void ... --; } } Download Reverse words program. Output of program: ...
devyog - 23/11/2019 - 11:40
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 ...
devyog - 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 ...
devyog - 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> ...
devyog - 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 ...
devyog - 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 ...
devyog - 22/11/2019 - 22:04