What is <stdio.h> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is <stdio.h>

C

30th Apr 2019, 4:20 AM
Cutiepie
5 Answers
+ 9
The C programming language provides many standard library functions for file input and output. These functions make up the bulk of the C standard library header <stdio.h> it is a header film that provides some set of function that is already defined in the standard library of c
30th Apr 2019, 4:46 AM
Mohd Abdul Sameer
Mohd Abdul Sameer - avatar
+ 1
its header for i/o operation used in C language. without it (or any i/o header) its not possible to recieve an input from user or show something to user
30th Apr 2019, 4:46 AM
Taste
Taste - avatar
0
stdio.h is standard header file used in C Programming Language . It specifies the system functions which can be used in the Gunton like printf and scanf. In other words this header files ts used to load he functions in your file for execution of your c program. It is the most basic header file of our c program as it contains all the minimal functionalities.
30th Apr 2019, 5:11 AM
Yash Raghava
Yash Raghava - avatar
0
Standard input and output
24th Dec 2019, 4:47 PM
Kotte Lokesh
- 1
<stdio.h> is a header file that allows you to run standard input output operations in C. All the functions included in standard C library can be used by using this header file.
30th Apr 2019, 7:06 PM
Nihar Sheth
Nihar Sheth - avatar