#include<stdio.h> means what .. for what purpose it is used to start a code in C language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

#include<stdio.h> means what .. for what purpose it is used to start a code in C language

Hope starting to code

14th Sep 2020, 9:40 AM
Bhava tharani Rajavel
Bhava tharani Rajavel - avatar
4 Answers
+ 2
stdio.h is a folder (a library in technical terms) that stores various files with code for inbuilt functions like printf() and you are importing or including it in your code because it is reusable. You are not supposed to write the code behind the printf function each time you're writing a new program, are you?
14th Sep 2020, 9:42 AM
Infinity
Infinity - avatar
+ 2
That's a header or library file, many types of functions defined in it, like as printf ( ) , sacnf ( ), FILE, etc..It's full form is ' standard input output' . We are writing this in the starting of programme , bcoz we are using printf () , sacnf ( ) too... Hope it helps you.
14th Sep 2020, 12:22 PM
Rupali Haldiya
Rupali Haldiya - avatar
+ 1
https://www.sololearn.com/learn/C/2911/ It means to include various things for standard input and output. Like scanf() and printf().
14th Sep 2020, 9:43 AM
你知道規則,我也是
你知道規則,我也是 - avatar
0
Another thing to know, <> means it searches the library *locally*, you can also use user-defined header like #include "myheader.h", take note that it first searches locally before going anywhere else to find.
15th Sep 2020, 11:32 PM
LastSecond959
LastSecond959 - avatar