Page not found
Search results
C program draw bar chart
C program to draw a bar chart using graphics. The chart is drawn using bars filled with different styles and colors. C program #include <graphics.h> #include <conio.h> int ...
devyog - 23/11/2019 - 11:40
C program to draw a 3d bar chart
This C program draws a 3d bar chart. C program #include <graphics.h> #include <conio.h> int ...
devyog - 23/11/2019 - 11:40
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 program to draw circles in circles
C program to draw circles in circles in two different colors. C program #include<graphics.h> #include<conio.h> ...
devyog - 23/11/2019 - 11:40
C program to compare large numbers (integers)
... positive, zero or negative, we will take care of it in our program. Algorithm of comparing: If both numbers are positive: If the ... which is smaller in magnitude is the larger one. C program to compare numbers using string #include <stdio.h> ...
devyog - 16/11/2019 - 09:19
Print an int (integer) in C
... and the number is printed on screen using printf. C program to print an int (integer) #include <stdio.h> int ... || []).push({}); Output of the program: C program to print first hundred positive integers [1, 100] ...
devyog - 12/10/2020 - 22:40
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 circle in C
C program to find the area of a circle: C programming code to calculate the area of a circle. In the program, we use 3.14159 as the value of Pi (ϖ). To compute it, we need to know ...
devyog - 04/11/2020 - 13:21
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
Function overloading in C++
... integers and another for adding two floats. In the second program, we make two functions with identical names but pass them a different ... as compile-time polymorphism. Function overloading C++ program #include <iostream> using namespace std ; ...
devyog - 31/10/2019 - 22:18