'How do you use non standard headers in C?
If I want to use graphics.h or conio.h with C, how do I even install it and get it to work?
Solution 1:[1]
You must have an archive of the respectively library that you want in your directory for libraries.
Then you will just import them typing, for example (the most common library in C):
#include <stdio.h>
So, do the following
- Add library archive to the libraries directory
- import them typing
#include<name-of-the-library .h>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Rodrigo |
