0
What is header files in c programming
3 Respostas
+ 1
The header (.h) files are normally used to store your #includes.
This way you can simply include the .h file in your .c file and the code will be cleaner.
And instead of including it like normal libraries:
#include <stdio.h>
You do it with parentheses:
#include "myLibs.h"
+ 1
Yes, correct.
Check out this article, you will learn everything you need to know there.
https://www.tutorialspoint.com/cprogramming/c_header_files.htm
0
Pieces of code that you can import to your project.