next up previous
Nächste Seite: Wie finde ich Fehler? Aufwärts: Visual C++ Vorlesung Vorherige Seite: Aufbau einer .cpp-Datei

Übung: HelloWorld

Datei main.cpp:


#include "hello.h"

void main(
) {
  HelloWorld();
}

Datei hello.cpp:


#include "hello.h"

void HelloWorld(
) {
  cout << "Hello World" << endl;
}

Datei hello.h:


#ifndef HELLO_H
#define HELLO_H

void HelloWorld(void);
#endif




1999-12-13