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 |
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is the difference between functions abs() and fabs()?
What are global variables and explain how do you declare them?
What are pointers in C? Give an example where to illustrate their significance.
Explain the use of keyword 'register' with respect to variables.
What is the difference between int main and void main?
What are the disadvantages of a shell structure?
Can a program have multiple main() functions?
What is storage class?
What are the ways to a null pointer can use in c programming language?
Explain Function Pointer?
How does the C program handle segmentation faults?