Example & Tutorial understanding programming in easy ways.

It is possible to create our own header file in C language?

Yes, It is possible to make a header file.


Step to create:

- Write code in any file which you want in your header file.

- Compile this file complete.

- Save this file bin folder of your compiler IDE and save  as filename with .h extension.

- Use this file in your program.

Read More →