Why is conio.h not required when we save a file as .c and
use clrscr() or getch() ?
Answers were Sorted based on User's Feedback
Answer / 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 |
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 |
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What is the difference between int main and void main?
Is exit(status) truly equivalent to returning the same status from main?
What is new line escape sequence?
how to generate sparse matrix in c
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
Do you know what is a programing language ?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Is register a keyword in c?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
What 'lex' does?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above