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
What is preprocessor with example?
Why is c called a mid-level programming language?
What are 'near' and 'far' pointers?
What is wrong with this initialization?
how to create duplicate link list using C???
Explain what is the difference between functions abs() and fabs()?
Write a program to print all permutations of a given string.
How is a null pointer different from a dangling pointer?
How are pointers declared in c?
Difference between MAC vs. IP Addressing
Write a program to print ASCII code for a given digit.
What is static memory allocation?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How to write c functions that modify head pointer of a linked list?
What is the difference between malloc calloc and realloc in c?