Compile

Status
Niet open voor verdere reacties.

Raisa

Gebruiker
Lid geworden
15 aug 2003
Berichten
608
Hoi als ik probeer te compileren krijg ik volgende output:
---------- Capture Output ----------
"G:\Program Files\Borland\Bin\bcc32.exe" sorttab3.h
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
sorttab3.h:
Error E2209 sorttab3.h 4: Unable to open include file 'iostream.h'
Error E2209 sleutelc.h 9: Unable to open include file 'iostream.h'
Error E2209 sleutelc.h 10: Unable to open include file 'stdio.h'
Error E2209 sleutelc.h 11: Unable to open include file 'string.h'
Error E2141 sleutelc.h 13: Declaration syntax error
Error E2449 sleutelc.h 82: Size of 'Sleutel' is unknown or zero
Error E2141 sleutelc.h 82: Declaration syntax error
Error E2141 sorttab3.h 8: Declaration syntax error
Error E2141 sorttab3.h 9: Declaration syntax error
Error E2141 sorttab3.h 11: Declaration syntax error
Error E2141 sorttab3.h 66: Declaration syntax error
Error E2303 sorttab3.h 248: Type name expected
*** 12 errors in Compile ***
Terminated with exit code 1

Iemand een idee waaraan het kan liggen?
 
Je hebt verkeerde syntaxes ingevoerd lijkt mij. Ik weet verder hier nix van af.
 
Klein gokje hier

in sorttab3.h staat waarschijnlijk:
Code:
#include "iostream.h"
Dit moet zijn:
Code:
#include <iostream.h>

Dit wil zeggen dat het bestand niet in de huidige directory staat, maar in de standaard compiler include directory.

Have fun
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan