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 are brk, sbrk?
Explain enumerated types in c language?
Explain how can I make sure that my program is the only one accessing a file?
What is the use of volatile?
When is a “switch” statement preferable over an “if” statement?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
Linked lists -- can you tell me how to check whether a linked list is circular?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What is console in c language?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
Why does the call char scanf work?