C-Uebung

Empty

Der Code für ein leeres, modularisiertes C/C++ Programm besteht mindestens aus:

main.cpp:

#include "module.h"

int main()
{
   // ... function calls ...

   return(0);
}

module.h:

// ... function prototypes ...

module.cpp;

#include "module.h"

// ... function implementations ...


Options: