0

What is header files in c programming

18th Nov 2018, 2:26 PM
Microsof Login
Microsof Login - avatar
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"
18th Nov 2018, 2:37 PM
Panayot Zhaltov
Panayot Zhaltov - avatar
+ 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
18th Nov 2018, 2:50 PM
Panayot Zhaltov
Panayot Zhaltov - avatar
0
Pieces of code that you can import to your project.
18th Nov 2018, 2:41 PM
Bebida Roja
Bebida Roja - avatar