While compiling a c program,graphics header files are not
including in my program..eg: <graphics.h>,what may be the
problem...is there any environment settings exists.
Answers were Sorted based on User's Feedback
Answer / sachin tyagi
it will not be exiucet b/c ther will be synatx error
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sangeetha
ya offcourse.......if you want to get the circle,ellipse,
diagram in the ouput screen....we should declare the
<graphic.h> file
Is This Answer Correct ? | 2 Yes | 2 No |
What is header file definition?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
how to generate sparse matrix in c
What are categories used for in c?
what is the definition of storage classes?
Why functions are used in c?
what is purpose of fflush(stdin) function
How can I delete a file?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
why do some people write if(0 == x) instead of if(x == 0)?