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
Write a program of advanced Fibonacci series.
What are dangling pointers in c?
What are pragmas and what are they good for?
Is that possible to store 32768 in an int data type variable?
What does typeof return in c?
How can I find out how much free space is available on disk?
What’s the special use of UNIONS?
What is the g value paradox?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What Is The Difference Between Null And Void Pointer?
What is atoi and atof in c?
largest Of three Number using without if condition?
Explain high-order bytes.
What is an auto variable in c?
What are identifiers and keywords in c?