Why is conio.h not required when we save a file as .c and
use clrscr() or getch() ?
Answer Posted / vignesh1988i
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.....
and even we can type main() instead of void main() , it is
accepting with the warning.............
thank u
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Explain what are bus errors, memory faults, and core dumps?
What are different storage class specifiers in c?
List some of the static data structures in C?
What are runtime error?
How do you list files in a directory?
What is a void pointer in c?
I heard that you have to include stdio.h before calling printf. Why?
What is difference between Structure and Unions?
What does *p++ do? What does it point to?
What is string concatenation in c?
What is %d used for?
largest Of three Number using without if condition?
program for reversing a selected line word by word when multiple lines are given without using strrev
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
How can you increase the size of a statically allocated array?