0% found this document useful (0 votes)
18 views1 page

Practical No 1

DATA SCIENCE

Uploaded by

mauligaming465
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

Practical No 1

DATA SCIENCE

Uploaded by

mauligaming465
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Practical No:

Aim: Write a program to draw an arc .

Requirement: Turbo C++.

Code:

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

Int main()

int gd=DETECT,gm;

initgraph(&gd,&gm,”C://TURBOC3//BGI”);

arc(180,130,70,250,120);

getch();

closegraph();

return 0;

Output:

Result: Program is run Successfully.

You might also like