| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
a programming problem
so yeah i am tryin to make thise work
this is the code: //include this file for cout #include <iostream.h> int main() { //print out the text string, "Hello, World!" cout << "Hello, World!" << endl; return 0; } --but when i run it it has a problem [C++ Fatal Error] hello.cpp(13): F1013 Error writing output file i use borland c++ builder 6 it i a tryin to atleast make this work so someone help me me a noob in this so this can be easy for u guys |
|
#2
|
|||
|
|||
|
Insted of iostream.h just use iostream then under that ad using namespace std;
|
|
#3
|
|||
|
|||
|
thanks but i still get the same error
[C++ Fatal Error] hello.cpp(14): F1013 Error writing output file and this is what i wrote Code:
//include this file for cout
#include <iostream>
using namespace std;
int main() {
//print out the text string, "Hello, World!"
cout << "Hello, World!" << endl;
return 0;
}
Last edited by B-Con : July 16th, 2005 at 07:00 PM. Reason: added closing [code] tag ;) |
|
#4
|
||||
|
||||
|
Quote:
That doesn't have to do with your code, that has to do with the creation of the EXE. Most likely you left it running then tried to re-compile your code, which would attempt to overwrite the current EXE, but it can't do so if it's running If that's not it, make sure the directory isn't read-only, or ensure that the existing EXE is not read-only....
__________________
Officially a member of the Itsacon fan club. Beer blasts are every friday at Viper_SB's house. I bring the chips. ![]() |
![]() |
| Viewing: Dev Articles Community Forums > Programming > C/C++ Help > a programming problem |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|