Name: Anonymous 2010-11-10 23:41
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number;
while (number != RAND_MAX) {
srand (time(NULL));
number = rand();
}
cout << "hello world!";
}What does /prague/ think of my first C++ program?