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
How can you increase the allowable number of simultaneously open files?
What are the differences between Structures and Arrays?
What do you mean by Recursion Function?
Describe the steps to insert data into a singly linked list.
How can I swap two values without using a temporary?
What is putchar() function?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is indirection in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is header file definition?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What Is The Difference Between Null And Void Pointer?
What do you understand by friend-functions? How are they used?
What is a lookup table in c?
What is a example of a variable?