Page not found
Search results
C program to display mouse pointer in graphics mode
This program displays mouse pointer in graphics mode. First graphics mode is initialized and then mouse using initmouse. C program #include<graphics.h> #include<conio.h> ...
devyog - 23/11/2019 - 11:40
C countdown program
C graphics program which performs countdown for 30 seconds. C program #include <graphics.h> #include <dos.h> #include ...
devyog - 23/11/2019 - 11:40
C program to check if mouse support is available or not
/* Program to check if mouse driver is loaded or not */ C program #include <dos.h> #include <conio.h> int ...
devyog - 23/11/2019 - 11:40
Fibonacci series in C
... || []).push({}); Fibonacci series program in C #include <stdio.h> int main ( ) { ... 1 , next , c ; printf ( "Enter the number of terms \n " ) ; scanf ( "%d" , & n ) ...
devyog - 25/10/2020 - 23:45
C++ program to add two arrays
C++ program to add two arrays. C++ programming code #include<iostream> ... 20 ] , c, n ; cout << "Enter the number of elements in the array " ; cin >> n ; ...
devyog - 31/10/2019 - 20:16
C++ program to generate random numbers
C++ program to print random numbers. C++ programming code #include ... int n, t, c ; cout << "Enter the number of random numbers you want" << endl ; cin >> n ; ...
devyog - 31/10/2019 - 19:57
C++ program to generate Fibonacci series
C++ program for Fibonacci series. C++ programming code ... = 1 , next ; cout << "Enter the number of terms of Fibonacci series you want" << endl ; cin ...
devyog - 28/12/2017 - 15:18
Print numbers without using loops
C program to print first n natural numbers without using any loop (do-while, for, or while). In the first program, we use recursion to achieve the desired output, and in the second, we ... i.e., without creating any function other than main. C program using recursion #include <stdio.h> void print ( ...
devyog - 09/10/2020 - 22:48
Area of a triangle in C
C program to find the area of a triangle using Heron's or Hero's formula. The input of the program is the lengths of sides of the triangle. The triangle exists if the sum of any of its two sides is greater than the third side. The program assumes that a user will enter valid input. C program to find area ...
devyog - 23/11/2019 - 11:40
String copy in C
C program to copy a string using library function strcpy and without using strcpy . String copy C program #include <stdio.h> #include <string.h> int ... || []).push({}); Output of program: Copy string in C without using strcpy #include ...
devyog - 18/11/2019 - 19:00