Subscribe to:
Post Comments (Atom)
Write a program to draw a circle using mid-point circle drawing algorithm.
#include<iostream.h> #include<graphics.h> #include<conio.h> void drawcircle(int x0, int y0, int r) { ...
-
#include<iostream.h> #include<conio.h> #include<graphics.h> void drawCircle(int x, int y, int xc, int yc); void...
-
#include<stdio.h> #include<conio.h> main() { int a=8, b=12; clrscr(); printf("Before swap of two numbers a=%d b=%...
-
#include<stdio.h> main() { int num,i=1; printf("Enter the number whose multiple you want"); scanf("%d",...
No comments:
Post a Comment