Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
64% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
0 Endorsements
~15.3K People Reached
Favorite Forums
Favorite Tags
c++ x 2

2 Posted Topics

Member Avatar for Demetrius

thanks for the link to BCX ... i've found a few other links along the way. i was hoping this BCX could help me translate some vb6 projects to native C/C++ apps so i could study the code and learn more.

Member Avatar for k191376
0
15K
Member Avatar for Ponomous

quoting restrictment 1. #include<iostream> 2. #include<time.h> 3. using namespace std; 4. int main() 5. { 6. int random[2]; 7. for(int x=0;x<2;x++) 8. { 9. srand ((unsigned)time(0)); 10. random[x] = (rand() % 8) + 1; 11. cout << random[x] << " "; 12. } 13. cout << endl; 14. } thanx …

Member Avatar for vb6exp32
0
240

The End.