inherit
53203
0
Nov 21, 2005 17:11:41 GMT -8
pippinoftook
My king will return.
109
August 2005
pippinoftook
|
coding
Aug 8, 2005 8:38:20 GMT -8
Post by pippinoftook on Aug 8, 2005 8:38:20 GMT -8
alright... so I know XHTML, the basics of JavaScript and CSS. I'd like to learn C++... any one have any good sites, forums, (free)compilers, and/or tutorials?
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
coding
Aug 8, 2005 8:41:42 GMT -8
Post by Ross on Aug 8, 2005 8:41:42 GMT -8
|
|
squalleh
inherit
-149626
0
Dec 2, 2024 15:28:24 GMT -8
squalleh
0
January 1970
GUEST
|
coding
Aug 8, 2005 8:42:02 GMT -8
Post by squalleh on Aug 8, 2005 8:42:02 GMT -8
|
|
inherit
53203
0
Nov 21, 2005 17:11:41 GMT -8
pippinoftook
My king will return.
109
August 2005
pippinoftook
|
coding
Aug 8, 2005 9:01:40 GMT -8
Post by pippinoftook on Aug 8, 2005 9:01:40 GMT -8
thanx y'all
any one else have any thing
hey I downloaded Dev-C++ and installed it but it wont run my program... I copyed the code exactly... compiled and run but it wont run it right...
|
|
inherit
g4m3 0v3r
771
0
Jul 18, 2011 18:29:23 GMT -8
David (Monty)
3,669
December 1999
mbarker22
|
coding
Aug 8, 2005 21:09:07 GMT -8
Post by David (Monty) on Aug 8, 2005 21:09:07 GMT -8
What is the source code of your program?
|
|
inherit
53203
0
Nov 21, 2005 17:11:41 GMT -8
pippinoftook
My king will return.
109
August 2005
pippinoftook
|
coding
Aug 9, 2005 4:09:54 GMT -8
Post by pippinoftook on Aug 9, 2005 4:09:54 GMT -8
|
|
squalleh
inherit
-149630
0
Dec 2, 2024 15:28:24 GMT -8
squalleh
0
January 1970
GUEST
|
coding
Aug 9, 2005 4:28:59 GMT -8
Post by squalleh on Aug 9, 2005 4:28:59 GMT -8
Does Dev-C++ run correctly? If so, post the code you tried compiling in Dev-C++ (the one that wouldn't run).
|
|
inherit
53203
0
Nov 21, 2005 17:11:41 GMT -8
pippinoftook
My king will return.
109
August 2005
pippinoftook
|
coding
Aug 9, 2005 4:30:34 GMT -8
Post by pippinoftook on Aug 9, 2005 4:30:34 GMT -8
o okay. yea it runs... here is the code I tried
#include <iostream.h>
int main(){
cout << "Hello World!!!";
return 0; }
it would compile and it compiles in another one I have but it just dont run in Dev-C++
|
|
squalleh
inherit
-149632
0
Dec 2, 2024 15:28:24 GMT -8
squalleh
0
January 1970
GUEST
|
coding
Aug 9, 2005 4:38:23 GMT -8
Post by squalleh on Aug 9, 2005 4:38:23 GMT -8
o okay. yea it runs... here is the code I tried #include <iostream.h>
int main(void){
cout << "Hello World!!!";
return 0; }
it would compile and it compiles in another one I have but it just dont run in Dev-C++ Try this: #include <iostream>
int main () { cout << "Hello World!!!"; return 0; }
If a console window opens then closes right away that's normal. To prevent it, use this: #include <iostream> #include <conio.h>
int main () { cout << "Hello World!!!";
getch (); return 0; }
I included another library and used the getch () function. Look them up if you want further information (google will do).
|
|
inherit
53203
0
Nov 21, 2005 17:11:41 GMT -8
pippinoftook
My king will return.
109
August 2005
pippinoftook
|
coding
Aug 9, 2005 4:41:22 GMT -8
Post by pippinoftook on Aug 9, 2005 4:41:22 GMT -8
thanx
|
|