Why is conio.h not required when we save a file as .c and
use clrscr() or getch() ?
Answer Posted / kuldeep yadav
not only conio.h , also stdio.h we dont need while saving a
C program with the extension '.c'... but in recent turbo C
or borland C compilers only it's allowing , it may be to
reduce the time of typing these files to include rather
getting automatically included.....
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Explain goto?
What is static memory allocation?
What is the use of pointers in C?
What is a void pointer? When is a void pointer used?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is the hardest programming language?
What is the use of clrscr?
int i=10; printf("%d %d %d", i, i=20, i);
Explain about C function prototype?
All technical questions
How does #define work?
What is self-referential structure in c programming?
What is NULL pointer?
Difference between goto, long jmp() and setjmp()?
Write a code to remove duplicates in a string.