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
Ranked #72.8K
2 Posted Topics
Re: Sound in C++
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.
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 …
The End.
vb6exp32