DEV Community

Selfish Dev
Selfish Dev

Posted on • Edited on

2 1

Header Files (test.h)

Introduction

Dynamically Linked Library has 3 parts

  • Header File - .h
  • Library File - .lib
  • Binary File - .dll

What is header file

Header file is a list of function that a library provides , it doesn't tell what the functions do it just declares them

example if you open sdl.h you would see something like

int SDL_Init(int flags);
Enter fullscreen mode Exit fullscreen mode

This declares SDL_Init() function but it doesnt tell what it does

How to use

just at top of your code mention

#include <SDL2/SDL.h>
Enter fullscreen mode Exit fullscreen mode

here SDL2 is directory where SDL.h is stored

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay