Include-Dateien (C Programmiersprache)

Aus ahrensburg.city
Zur Navigation springen Zur Suche springen

Header-Datei (myheader.h)

#ifndef MYHEADER_H
#define MYHEADER_H

void printHello();

#endif

Implementierungsdatei (myheader.c)

#include <stdio.h>
#include "myheader.h"

void printHello() {
    printf("Hello, World!\n");
}

Hauptdatei (main.c)

#include "myheader.h"

int main() {
    printHello();
    return 0;
}

Kompilieren und Ausführen

gcc main.c myheader.c -o myprogram
./myprogram