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 |
Which sorting algorithm is the best?
with out using main how to execute the program?
swap 2 numbers without using third variable?
What is the use of keyword VOLATILE in C?
When is a void pointer used?
What is structure data type in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What does double pointer mean in c?
How we can write a value to an address using macro..?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Reverse a string word by word??