+ 1
#include<stdio.h> means what .. for what purpose it is used to start a code in C language
Hope starting to code
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?
+ 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.
+ 1
https://www.sololearn.com/learn/C/2911/
It means to include various things for standard input and output. Like scanf() and printf().
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.