Without header files in C language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Without header files in C language

Can you run a basic/beginner level's program without writing the header files i.e. <stdio.h> and <conio.h> in C language ?

1st Sep 2020, 10:52 AM
H R P
H R P - avatar
3 Answers
+ 3
Without <conio.h> there is no problem (except you are using Turbo compiler). But without <stdio.h>, you *may* get a "implicit function declaration" warning when you call a function that was defined within <stdio.h>. It might also be possible for other type of warning to arise due to the use of constant, macro, enum etc. that were defined within <stdio.h>
1st Sep 2020, 11:03 AM
Ipang
1st Sep 2020, 11:05 AM
H R P
H R P - avatar
1st Sep 2020, 11:11 AM
H R P
H R P - avatar