Q:

Write a C Program to draw Inductive Coil using Graphics

0

Write a C Program to draw Inductive Coil using Graphics. Here’s simple Program to draw Inductive Coil using Graphics in C Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Below is the source code for C Program to draw Inductive Coil using Graphics which is successfully compiled and run on Windows System to produce desired output as shown below :

 
 


SOURCE CODE : :

/*  C Program to draw Inductive Coils using Graphics  */

#include<stdio.h>
#include<conio.h>
#include<graphics.h>

void main() {

   int gd = DETECT, gm;
   initgraph(&gd, &gm, "c:\\tc\\bgi");

   line(100, 200, 150, 200);

   arc(200, 200, 0, 180, 50);
   arc(260, 200, 0, 180, 50);
   arc(230, 200, 180, 360, 20);

   arc(320, 200, 0, 180, 50);
   arc(290, 200, 180, 360, 20);

   arc(380, 200, 0, 180, 50);
   arc(350, 200, 180, 360, 20);

   line(430, 200, 470, 200);

   getch();
   closegraph();
}

Above is the source code for C Program to draw Inductive Coil using Graphics which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Graphic Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C Program to Draw Resistance using Graphic... >>
<< Write a C Program to Hide Mouse Pointer using Grap...