Page not found
Search results
C program to find maximum and minimum number in an array
C program to find the maximum and minimum number in an array. A user will input ... find the largest and the smallest number in the array. C program #include <stdio.h> int main ( ) { ...
devyog - 24/11/2019 - 00:12
C program to find next prime palindrome
C program to find next prime palindrome: a user will enter a number, and we have ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <math.h> int ...
devyog - 01/12/2019 - 08:56
C program to convert string to integer without using atoi function
C program to convert string to integer: It is frequently required to convert a ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi ...
devyog - 23/11/2019 - 11:40
String compare in C
How to compare strings in C? You can use do it using strcmp function , without strcmp function and ... = window.adsbygoogle || []).push({}); C compare strings #include <stdio.h> #include <string.h> ... || []).push({}); Output of program: Download Compare Strings program. C string comparison ...
devyog - 05/12/2019 - 08:50
C++ program to add two complex numbers
C++ program to add two complex numbers. C++ programming code #include <iostream> using namespace ...
devyog - 13/07/2018 - 12:29
Leap year program in C
Leap year program in C to check if a year is a leap year or not, a leap year is one that ... || []).push({}); Leap year C program #include <stdio.h> int main ( ) { ...
devyog - 02/10/2020 - 00:25
C program to restrict mouse pointer
This program restricts mouse pointer in a rectangle. When this program is executed ... rectangle. /* Program to restrict mouse-pointer */ C program #include<dos.h> #include<graphics.h> ... , gm ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; settextstyle ( DEFAULT_FONT , 0 ...
devyog - 23/11/2019 - 11:40
C program to move a car
Program in C using graphics to move a car. A car is made using two rectangles ... = window.adsbygoogle || []).push({}); C program #include <graphics.h> #include <dos.h> #include ...
devyog - 23/11/2019 - 11:40
C program to draw pie chart
This C program draws a pie chart showing percentage of various components drawn with different filling styles and colors. C program /* Program to draw a pie chart */ #include<graphics.h> ...
devyog - 23/11/2019 - 11:40
C++ program to generate Fibonacci series
C++ program for Fibonacci series. C++ programming code #include<iostream> using namespace ...
devyog - 28/12/2017 - 15:18