Example of header file c

#ifndef EXAMPLE_H
#define EXAMPLE_H

// Constants
#define PI 3.14159

// Function declarations
int add(int a, int b);
float multiply(float x, float y);

#endif // EXAMPLE_H