Forum: C++ May 25th, 2004 |
| Replies: 5 Views: 25,966 A header file is made up of pre-processor directives, classes, namespaces etc. a good place to look at is cplusplus.com (http://www.cplusplus.com/doc/tutorial). look at the classes, objects and... |
Forum: C++ May 21st, 2004 |
| Replies: 9 Views: 2,738 i hate making decisions for people but in my opinion do c++... its good... so just do it... |
Forum: C++ Apr 13th, 2004 |
| Replies: 9 Views: 8,975 thats easy...
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x = 0; |
Forum: C++ Apr 8th, 2004 |
| Replies: 21 Views: 44,795 i have my first game code of a dice game you can look at if you would like. ill post it if you reply back, it displays the dice using characters... its simple but i like it. |
Forum: C++ Mar 24th, 2004 |
| Replies: 3 Views: 2,763 www.cplusplus.com (http://www.cplusplus.com) but nothing is better than a book. SAMS teach yourself c++ in 24 hours is awesome. but go through the lessons really slow. also, nothing compares to a... |
Forum: C++ Mar 21st, 2004 |
| Replies: 7 Views: 11,956 how do u pause a command in c++? i know how to pause using system("pause") or cin.get() but i want to know hot to make the program sleep for a certain ammount of time... like vbs' wscript.sleep... |
Forum: C++ Mar 21st, 2004 |
| Replies: 12 Views: 6,028 if its just in the dos screen
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "Hello World!" << endl; |