Question:
Is it possible to print graphics output in C?
Answer:
No. Source: CoolInterview.com
Answered by: hema | Date: 11/23/2008
| Contact hema
yes,we can print graphics output using c by using APIs defined in #include<graphics.h> Source: CoolInterview.com
Answered by: pavan kumar | Date: 12/22/2008
| Contact pavan kumar
yes, we can print graphics output using c by include header file #include<graphics.h>
we can pring polygon,rectangle,circle,ellipse,line and etc. Source: CoolInterview.com
Answered by: ankur dixit | Date: 6/5/2009
| Contact ankur dixit
yes,we can write graphic programs in c..but we have to use #include<graphics.h> succeeded by the detect,the storage place,the pixel position etc., Source: CoolInterview.com
Answered by: srikanth | Date: 8/7/2009
| Contact srikanth
yes it can be done like this
#include<graphics.h> #include<conio.h> void main() { int gd,gm; initgraph(&gd,&gm,""); //function for initilising graphics
// now we can use any graphics function like
circle(320,240,50); getch(); } Source: CoolInterview.com
Answered by: SANDEEP | Date: 1/15/2010
| Contact SANDEEP
Tp execute graphics related operations we have to use
#include<graphics.h> Source: CoolInterview.com
Answered by: Anil R Chinchawade | Date: 6/23/2010
| Contact Anil R Chinchawade
after include 'graphics.h' we can use all the predefined functions related graphics in c. Source: CoolInterview.com
Answered by: Krishna | Date: 7/27/2010
| Contact Krishna
using #include<graphics.h> header file Source: CoolInterview.com
Answered by: vivek ranjan | Date: 9/7/2010
| Contact vivek ranjan
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|