Tagged Questions

0
votes
1answer
114 views

how to see complete output in visual c++ 2008

my program's output is very big, like I run for loop for 100 times, displaying 5-6 lines every time. Problem is, when I run output, it displays only last 20-25 results. Is it possible to all of the ...
0
votes
5answers
212 views

error when i give sleep(1000), to make srand() work, in visual C++

i have following program: srand((unsigned) time(NULL)); for (int w = 0; w < 10; w++) { int ran_x; ran_x = rand() % 255; cout << "nRandom X = " << ran_x << endl; ...
0
votes
4answers
636 views

Migrating from Visual C++ 6 to Visual C++ 2008 express

I'm tring to migrate my code from VCpp 6 to VCpp 2008 express but when I build the solution I receive this error message: icl: warning: problem with Microsoft compilation of ...