compiler
i need a compiler but i can not relly aford one because i am only 13 i downloaded one lastnight and when i compled it. it wored fine but it would not run. so were can i get a ½ good free compiler?
edit:it is for c/c++
Edited by - aqzman on January 31, 2002 5:14:40 AM
January 31, 2002 04:30 AM
http://www.borland.com/bcppbuilder/freecompiler/
bloody good free compiler.
bloody good free compiler.
the damned thing will not let me sign up when i try 2 it says "can not find server"
You can also try DevC++. (www.bloodshed.net) It''s free and has a nice IDE.
If you want an IDe for Borland''s compiler try Vide.
If you want an IDe for Borland''s compiler try Vide.
baumep
i downloaded the bloddshed one it is pretty good but when i enter this code
#include <iostream.h>
int main()
{
cout << "Hello World!\n";
return 0;
}
it says there is no probs but when a run it nothing happens here is the tutrioul i got that code from http://members.tripod.com/~firstpod/cpp21/ch01.htm thanks if u can help me
#include <iostream.h>
int main()
{
cout << "Hello World!\n";
return 0;
}
it says there is no probs but when a run it nothing happens here is the tutrioul i got that code from http://members.tripod.com/~firstpod/cpp21/ch01.htm thanks if u can help me
It is doing something, it''s just doing it so fast you don''t see it. Try this (written in modern C++):
It will force the console to stay open until you hit a key. Alternatively, just run the program from a console to see the results.
#include <iostream>#include <cstdio>int main(void) { std::cout << "Hello world!" << std::endl; getchar(); return 0;}
It will force the console to stay open until you hit a key. Alternatively, just run the program from a console to see the results.
quote: Original post by aqzman
when i try to open it it will not open how can i fix this?
What do you mean? You''re being too vague.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement