what is the use of #include <studio.h> and #include <conio.h> in C programming ,why these are are mandatory,why can't I skip these ,plz help me guys
Answers
Answered by
0
Explanation:
h is short name of Standard Input & Output Header file. It is basically used to access different macros, functions to perform input and output.stdio. h includes basic functions such as printf, scanf, getc(), gets(), getchar(), puts(), putchar(), clearerr(), fopen(), fclose(), getw(), putw(), fgetc(), putc().
Answered by
0
use of #include <studio.h> and #include <conio.h> in C:
Explanation:
- There are so many predefined functions in c language which is used to perform some specific task.
- These functions have some definition which is defined in the header file.
- So when any user wants to use this type of function, then he needs to use the header file which has the definition of that function.
- The studio and conio are also a header file that has a definition of scanf, printf, and getch function definition.
- That's why the user is using this header file in the c programming.
Learn More:
- Header file in c: https://brainly.in/question/1053822
Similar questions