Write a C Program to Draw Capacitor using Graphics

By | 02.12.2016

Draw Capacitor using Graphics


Write a C Program to Draw Capacitor using Graphics. Here’s simple C Program to Draw Capacitor using Graphics in C Programming Language.


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


SOURCE CODE : :


/* C Program to Draw Capacitors using Graphics  */

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

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

   outtextxy(110, 60, "C");

   line(80, 100, 100, 100);
   line(100, 80, 100, 120);
   line(120, 80, 120, 120);
   line(120, 100, 140, 100);

   getch();
   closegraph();
}

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

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

0 0 votes
Article Rating
Category: C Programming Graphic Programs Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments