Why is conio.h not required when we save a file as .c and
use clrscr() or getch() ?
Answer Posted / 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 |
Post New Answer View All Answers
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is the deal on sprintf_s return value?
What is structure in c language?
What is a pointer and how it is initialized?
explain what is a newline escape sequence?
What are the types of c language?
What is #define used for in c?
Explain goto?
Explain threaded binary trees?
How do I send escape sequences to control a terminal or other device?
What is the difference between malloc calloc and realloc in c?
What are the 5 elements of structure?
What is pass by reference in functions?
how can use subset in c program and give more example
What is the size of enum in bytes?