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 |
How many types of operators are there in c?
what will be the output for the following main() { printf("hi" "hello"); }
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..
How do I convert a string to all upper or lower case?
what is the difference between declaration ,defenetion and initialization of a variable?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What are compound statements?
What is static memory allocation? Explain
can we access one file to one directory?
What are the differences between new and malloc in C?
Do variables need to be initialized?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;